body {
    background: #F6F7FB;
}

/* CONTAINER */
.auth-fluid {
    min-height: 100vh;
}

.auth-fluid-form-box {
    background: #fff;
    border-right: 1px solid #EEF0F6;
    max-width: 460px;
    width: 100%;
}

.card-body {
    /*padding: 28px 32px !important;*/
    justify-content: center;
}

/* LOGO */
.auth-brand {
    text-align: center !important;
    margin-bottom: 10px;
}

.auth-brand img {
    width: 200px !important;
    margin: 0 auto;
}

/* TEXTOS */
.form-area {
    margin-top: 10px;
}

h4 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 5px;
}

p.text-muted {
    font-size: 14px;
    color: #8A93A3 !important;
    margin-bottom: 20px;
}

/* INPUTS */
.form-control {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #DDE3EE;
    padding: 0 14px;
    font-size: 14px;
    transition: all .2s;
}

.form-control::placeholder {
    color: #9AA3B2;
}

.form-control:focus {
    border-color: #5B5BD6;
    box-shadow: 0 0 0 4px rgba(91, 91, 214, .12);
}

.mb-3 {
    margin-bottom: 12px !important;
}

/* CAPTCHA */
.captcha-box {
    text-align: center;
    margin-top: 10px;
}

.captcha-box img {
    border-radius: 10px;
    border: 1px solid #EEF0F6;
    padding: 4px;
    margin-bottom: 10px;
    max-width: 200px;
}

/* BOTÃO */
.btn-primary {
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4254BA, #5B5BD6);
    border: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(66, 84, 186, .25);
    transition: all .2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(66, 84, 186, .35);
}

/* FOOTER */
.footer.footer-alt {
    margin-top: 18px;
    text-align: center;
}

.footer a {
    color: #5B5BD6 !important;
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {
    .auth-fluid-form-box {
        max-width: 100%;
    }

    .card-body {
        padding: 24px !important;
    }

    .auth-brand img {
        width: 180px !important;
    }
}