﻿html, body {
    height: 100%;
    margin: 0;
}

.logo {
    background-image: url("../img/logo.jpg");
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-repeat: no-repeat;
    background-size: contain; 
    background-position: center; 
}

.formLogin {
    width: 350px;
    height: 210px;
    margin: 0 auto;
    position: absolute;
    top: 25%;
    left: 35%;
    background: rgba(7,44,70,.7);
    padding: 20px 22px;
    border: 1px solid;
    border-top-color: rgba(255,255,255,.4);
    border-left-color: rgba(255,255,255,.4);
    border-bottom-color: rgba(60,60,60,.4);
    border-right-color: rgba(60,60,60,.4);
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.5);
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.5);
}

.accountBody {
    width: 70%;
    height: 100%;
    margin: 0 auto;
}

.accountHeader h2 {
    margin: 10px 0 7px 0;
    font-size: 19px;
    text-align: center;
    color: white;
}

.accountHeader p {
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.accountHeader {
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 8px;
}

