* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    background-color: #F6F6F6;
    border: 2px solid #F1F1F1;
    font-family: 'Lato', sans-serif;
    color: #545A5F;
    font-size: 13px;
}
header {
    padding: 20px 30px;
}
main {
    padding: 120px 20px 0;
    position: relative;
}
h1 {
    margin: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #444;
}
a {
    text-decoration: none;
    color: #545A5F;
}
p {
    font-size: 14px;
    line-height: 1.5;
    margin: 25px 0 22px;
}
.center {
    text-align: center;
}

h1,
input[type=submit] {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.ac-form-div {
    text-align: left;
    background-color: #fff;
    max-width: 400px;
    margin: 0 auto;
    padding: 35px 25px;
    -webkit-box-shadow: 0 1px 4px #00000D24;
    box-shadow: 0 1px 4px #00000D24;
    border-radius: 5px;
    position: relative;
}
.ac-form-row {
    margin-bottom: 15px;
}
input {
    margin-top: 5px;
    outline: 0;
    width: 100% !important;
    border: 1px solid #ccc !important;
    border-radius: 0;
    padding: 15px 10px !important;
    background: none;
    font-family: 'Lato', sans-serif !important;
}
input[type=checkbox] {
    background: none;
    margin: 0 6px 0 0;
    border: 1px solid #ccc !important;
    border-radius: 0;
    width: 20px !important;
    height: 20px;
    position: relative;
    top: 5px;
}
input[type=submit] {
    background-color: #FF9900 !important;
    border: none!important;
    color: #fff;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
input[type=submit]:hover {
    -webkit-transform: scale(.98);
    -ms-transform: scale(.98);
    transform: scale(.98);
}
a.forgotPassword {
    color: #aaa;
    float: right;
}
.footer-links {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}
.footer-links a + a {
    margin-left: 50px;
}
.fieldError {
    background-color: #d9534f;
    color: #fff;
    font-size: 14px;
    padding: 22px 30px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    max-width: 90%;
    padding-right: 80px;
}
.fieldError.success {
    background-color: #5eb761;
}
.fieldError .close {
    position: absolute;
    right: 20px;
    top: calc(50% - 10px);
    cursor: pointer;
    padding: 5px;
}
.loginRequest-success {
    min-height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 25px 50px;
}
.loginRequest-success .thumbsup {
    background-color: #FF9900;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.loginRequest-success p {
    margin-top: 13px;
}
.login-form h1 {
    margin-bottom: 18px;
}
.resetPassword-form h1 {
    margin-bottom: 25px;
}
.forgotPassord-form {
    padding-bottom: 60px;
}
.requestLogin-form .ac-form-row {
    margin-bottom: 10px;
}
.requestLogin-form input[type=submit] {
    width: auto !important;
    padding: 15px 30px !important;
}

#loginShade {
    background: rgba(255,255,255,.8);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#loginShade span {
    width: 4px;
    height: 10px;
    background-color: #FF9900;
    display: inline-block;
    margin-right: 4px;
    opacity: .2;
    -webkit-animation: loader .6s infinite .15s;
    animation: loader .6s infinite .15s;
}
#loginShade span:first-child {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
#loginShade span:last-child {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}
@-webkit-keyframes loader {
    0% {
        height: 10px;
        opacity: .2;
    }
    50% {
        height: 20px;
        opacity: 1;
    }
    100% {
        height: 10px;
        opacity: .2;
    }
}
@keyframes loader {
    0% {
        height: 10px;
        opacity: .2;
    }
    50% {
        height: 20px;
        opacity: 1;
    }
    100% {
        height: 10px;
        opacity: .2;
    }
}