body#login {
    margin: 0;
}
body#login #content-wrap {
    padding: 0;
}
body#login #content-wrap #content {
    width: 100%;
    max-width: 100%;
}
#fm1 {
    width: 100%;
}
body#login .main-wrapper {
    position: relative;
}
body#login .main-wrapper .action-messages, body#login .main-wrapper .action-errors  {
    position: absolute;
    box-sizing: border-box;
}
#content.login {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    background-image: url("../img/bg/login-bg.jpg");
    background-size: cover;
    overflow: auto;
    padding: 0;
}
.login-scroller {
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
    padding: 0 100px;
    min-height: 100vh;
}
.login-wrapper {
    width: 650px;
    background: #201630;
    box-sizing: border-box;
    padding: 0 105px;
}
.login-wrapper > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
.login-logo {
    margin-bottom: 50px;
}
.login-wrapper h1 {
    font-family: "Motiva-sans",sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.text-input-wrapper {
    width: 100%;
    margin-bottom: 40px;
}
.text-input-wrapper label {
    display: block;
    font-family: "Motiva-sans",sans-serif;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
}
.text-input-wrapper input {
    width: 100%;
    font-family: "Motiva-sans",sans-serif;
    font-size: 16px;
    height: 50px;
    border-radius: 0;
    color: #fff;
    background: #161021;
    border: 1px solid #FFCB00;
    padding: 0 12px;
    box-sizing: border-box;
    outline: 0;
}
.text-input-wrapper input:focus {
    border: 1px solid #FFCB00;
}
.login-wrapper button {
    cursor: pointer;
    font-size: 16px;
    font-family: "Motiva-sans",sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    justify-content: center;
    padding: 16px;
    background: #FFCB00;
    color: #201630;

    height: 100%;
    text-shadow: none;
    font-weight: 600;
}
.login-wrapper button:hover {
    background: #FFFFFF;
}
.login-wrapper button:disabled {
    background: #161021;
    color: #302d39;
}
.forgot_password_wrapper {
    margin-bottom: 20px;
}
.forgot_password_wrapper {
    display: flex;
    justify-content: flex-end;
}
.registration_link_wrapper {
    display: flex;
    justify-content: center;
}
.forgot_password_wrapper a, .registration_link_wrapper a {
    color: #FFCB00;
    font-size: 14px;
}
.registration_title {
    text-align: center;
    margin: 100px 0 25px;
    font-size: 14px;
}
body#login #status {
    width: 100%;
    margin: 0 auto 40px;
}
body#login div.action-errors {
    background: #b7444a;
    border-color: #d98d8d;
    padding: 8px;
    border-radius: 0;
    box-sizing: border-box;
}
.footer-legal-links {
    display: flex;
    justify-content: center;
    margin-top: 3em;
}
.footer-legal-links a {
    color: #fff;
    text-transform: uppercase;
}
@media only screen and (max-width : 800px) {
    #content.login .login-scroller {
        padding: 0;
    }

    .login-wrapper {
        width: 100%;
    }
}
@media only screen and (max-width : 480px) {
    .login-wrapper {
        padding: 20px;
    }
}