body {
    background: #f1f1f1;
}

.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 380px;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.logo {
    max-width: 150px;
}

.btn-sistema {
    background: #006393;
    border: none;
}

.btn-sistema:hover {
    background: #004b70;
}

.forgot-link {
    color: #006593;
    text-decoration: none !important;
}

.forgot-link:hover,
.forgot-link:focus,
.forgot-link:active {
    color: #006593;
    text-decoration: none !important;
}



/* =========================
   TOAST LOGIN
========================= */

.login-toast {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;
    margin-bottom: 20px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 500;

    animation: fadeIn .3s ease;
}

.login-toast.success {
    background: rgba(37, 211, 102, 0.12);
    color: #1d7d46;
}

.login-toast.error {
    background: rgba(254, 0, 0, 0.08);
    color: #c40000;
}

.login-toast.warning {
    background: rgba(255, 193, 7, 0.15);
    color: #9a6a00;
}

.toast-icon i {
    font-size: 18px;
}

.toast-message {
    flex: 1;
}

/* =========================
   BOTÃO LOADING
========================= */

.btn-loading {
    pointer-events: none;
    opacity: .85;
}

/* =========================
   ANIMAÇÃO
========================= */

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}



.btn-reset-password {
    background-color: #006393 !important;
    color: #fff;
    border: none;
}

.btn-reset-password:hover {
    background-color: #004b70 !important;
    color: #fff;
}