html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(to bottom, #4a9452, #cde7d0, #ffffff);
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5.5rem 1rem 2rem;
}

.auth-brand {
    margin-bottom: 0.5rem;
}

.auth-card {
    max-width: 460px;
    border-radius: 14px;
}

.auth-logo {
    width: 15%;
    height: 15%;
    object-fit: contain;
}

h3 {
    color: #1f2937;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    border-radius: 0.55rem;
}

.is-invalid {
    border-color: #dc3545;
}

.password-toggle-wrapper .form-control {
    padding-right: 2.75rem;
}

.forgot-pass {
    font-size: 13px;
    text-align: center;
    display: block;
    margin-top: 10px;
}

.forgot-pass a {
    color: #267527;
    text-decoration: none;
}

.forgot-pass a:hover {
    text-decoration: underline;
}

.account-deactivated-card {
    margin-bottom: 1.25rem;
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid #f1aeb5;
    background: #fff;
    box-shadow: 0 10px 24px rgba(132, 32, 41, 0.08);
}

.account-deactivated-card__main {
    padding: 1rem;
    background: #fff5f5;
}

.account-deactivated-card__title {
    margin: 0;
    color: #842029;
    font-size: 1rem;
    font-weight: 800;
}

.account-deactivated-card__text,
.account-deactivated-card__reason,
.account-deactivated-card__account,
.account-deactivated-card__contact p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.account-deactivated-card__text {
    margin: 0.5rem 0 0.75rem;
    color: #b02a37;
}

.account-deactivated-card__account {
    color: #343a40;
    margin-top: 0.35rem;
    word-break: break-word;
}

.account-deactivated-card__label {
    font-weight: 800;
}

.account-deactivated-card__reason {
    margin: 0.85rem 0 0;
    color: #212529;
    word-break: break-word;
}

.account-deactivated-card__contact {
    padding: 0.85rem 1rem;
    background: #eef7ff;
    border-top: 1px solid #bfdbfe;
}

.account-deactivated-card__contact p {
    margin: 0;
    color: #075985;
}

.account-deactivated-card__contact a {
    display: inline-block;
    margin-top: 0.35rem;
    color: #0b5ed7;
    font-weight: 800;
    word-break: break-word;
}

.auth-back-btn {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background-color: #ffffff;
    color: #1a4d2e;
    border-radius: 999px;
    border: 1px solid #cfe8d8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 0.6rem 0.95rem;
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.1);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.auth-back-btn i {
    font-size: 0.95rem;
}

.auth-back-btn:hover {
    background-color: #f7fcf8;
    border-color: #a8d5be;
    box-shadow: 0 16px 28px rgba(16, 24, 40, 0.14);
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .auth-page {
        padding: 4.8rem 0.75rem 1.5rem;
    }

    .auth-logo {
        width: 72px;
        height: 72px;
    }

    .auth-back-btn {
        font-size: 12px;
        padding: 0.5rem 0.85rem;
    }
}
