html, body {
    height: 100%;
}

body {
    height: 100%;
    position: relative; 
    background: #7bcad7;
}

.main--login {
    height: 100vh;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.main--login__content {
    width: 415px;
    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login {
    box-shadow: 0 5px 10px 0 rgba(9, 152, 176, 0.12);
    background-color: #ffffff;
    width: 100%;

    display: flex;
    flex-direction: column;
}

.login__logo {
    width: 100%;  
    text-align: center;
    border-bottom: #D8D8D8 solid 1.5px;
}

.login__logo--title {
    font-size: 30px; 
    padding: 15px 5px;
    color: #448393;
}

.color-grey {
    width: 100%;
    color: #717689;
}

.login__content {
    width: 300px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin: auto;
    margin-top: 40px;
}

.login__text {
    font-weight: 700;
    margin-bottom: 24px;
    color: #717689;
    line-height: 1;
}

.login__content a:hover {
    cursor: pointer;
}

.login__inputs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.input--container {
    display: flex;
    flex-direction: column;
}

.input--container label {
    padding-bottom: 8px;
    color: #717689;
    text-align: left;
    max-width: 100%;
}

.login--input {
    width: 300px;
    padding: 12px 8px;
    border: #a6a0a0 solid 2px;
    border-radius: 5px;
}

.input:focus, .input:hover {
    border: #2996a9 solid 2px;
}

.mb-20 {
    margin-bottom: 20px;
}

#password-error, #login-error {
    padding: 5px 0px;
    display: block;
    color: #f02b2d;
    font-weight: 600;
    min-height: 10px;
}

.min-height {
    min-height: 20px !important;
}

.submit {
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.button-login {
    margin-bottom: 5px;
    text-align: center;
    display: block;
    background: #2996a9;
    color: #fefffd;
    border-radius: 5px;
    border: none;
    padding: 12px 0px;
    text-decoration: none;
    margin-bottom: 15px;
    width: 100%;
}

.button-login:hover {
    background: #08798c;
    transition: 0.3s ease-in;
    cursor: pointer;
}

.background-white {
    background: #fefffd;
    border-radius: 5px;
    color: #2996a9;
    text-decoration: underline;
}

.background-white:hover {
    background: #E0F2F7;
    transition: 0.3s ease-in;
}

.login-footer, .login-footer a{
    padding: 20px;
    font-weight: 700;
    color: #fefffd;
}

.login-footer a:focus {
    color: #cbccca;
}

.login-footer a:hover {
    cursor: pointer;
    color: #fefffd;
}

.login__footer {
    margin-top: 36px;
    width: 45%;
}

.login__footer:hover {
    cursor: pointer;
}

.login__footer--text {
    background: #0996b1;
    color: #e9fafc;
    padding: 0px 6px;
    font-weight: 700;
    font-size: 14px;
}

.login__footer--img {
    width: 100%;
}

.login-error {
    line-height: 1.5;
}

.margin-bottom {
    margin-bottom: 20px !important;
}

.confirmPassword, .confirmEmail {
    margin-bottom: 16px;
}

.login--error {
    padding: 0.75rem 1.25rem; 
    background-color: #f9d6d5;
    border-color: #f7c6c5;
    text-align: center; 
    color: #761b18;
}

.login--error:hover {
    cursor: pointer;
}

@media only screen and (max-width: 615px) {
    .div-inputs-modal {
        width: 300px;
    }
    .main--login__content {
        padding-bottom: 15%;
    }
}

@media (max-width: 415px) {
    .main-content {
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    .div-inputs-modal {
        width: 275px;
    }
}

.cpf-cnpj-error {
    border-color: #ff0000;
}