html, body {
    height: 100%;
}

body {
    overflow-y: scroll;
    position: relative;
}

.login-register {
    background-image: url("../img/auth_bg.svg") !important;
    background-color: #ccc !important;
    height: auto;
    min-height: 100%;
    padding: 70px 15px;
    position: relative;
}

.login-register:before {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
}

.login-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.notActivated {
    padding: 5% 15px;
    text-align: center;
}

.notActivated h1 {
    font-size: 65px;
    line-height: 70px;
    font-weight: bold;
}

.notActivated h3 {
    max-width: 600px;
    margin: 0 auto 20px;
}

.notActivated .footer {
    left: 0;
}

.notActivated form {
    max-width: 600px;
    margin: 0 auto;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    border-bottom: 1px solid #E2E4E7 !important;
}

#to-recover,
#forgot_password {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: underline;
}

.notActivated footer {
    position: static;
}

@media (min-width: 768px) {

    .notActivated h1 {
        font-size: 130px;
        line-height: 140px;
    }

}