﻿body > header {
    position: fixed;
    height: 70px;
    width: 100%;
    border-bottom: 1px solid #D9E0E8;
    z-index: 1;
}

body > footer {
    height: 40px;
    width: 100%;
    position: fixed;
    color: #A8ABB0;
    background-color: #192229;
    bottom: 0;
    -webkit-transition: linear 0.3s;
    -o-transition: linear 0.3s;
    transition: linear 0.3s;
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
    border-top: 1px solid #D9E0E8;
    z-index: 2;
}

body > main {
    float: left;
    width: 100%;
    background-color: #d9e0e8;
    min-height: 100%;
    padding-top: 100px;
    text-align: center;
}

form {
    padding-top: 30px;
    display: inline-block;
    width: 260px;
    text-align: center;
}

    form input {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }

    form div.image-container {
        height: 150px;
        width: 150px;
        background-color: white;
        border-radius: 50%;
        display: inline-block;
    }

.account-form-holder {
    background-color: #192229;
}

    .account-form-holder div {
        color: white;
    }

    .account-form-holder > div {
        color: white;
        font-size: 24px;
        letter-spacing: 1px;
    }

    .account-form-holder input {
        border: 1px solid white;
        background-color: #192229;
        border-radius: 5px;
        height: 32px;
        color: #fff;
    }

        .account-form-holder input::-webkit-input-placeholder {
            color: #fff;
        }

        .account-form-holder input::-moz-placeholder {
            color: #fff;
        }

        .account-form-holder input:-ms-input-placeholder {
            color: #fff;
        }

        .account-form-holder input::-ms-input-placeholder {
            color: #fff;
        }

        .account-form-holder input::placeholder {
            color: #fff;
        }

    .account-form-holder a {
        color: #e61c2a;
        font-weight: 600;
    }

    .account-form-holder button {
        width: 160px;
        border-radius: 20px;
        color: white;
        background-color: #e61c2a;
        border: none;
        margin: 25px auto;
        font-size: 14px;
        height: 32px;
        letter-spacing: 1px;
    }

        .account-form-holder button:hover {
            cursor: pointer;
        }
