.hero-section {
    min-height: 520px;
}

.quick-action-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-action-card:hover {
    transform: translateY(-3px);
}

.signup-district-alert {
    background: #eef6ff;
    border: 1px solid #cfe2ff;
    border-radius: 12px;
    padding: 16px 18px;
}

.signup-district-icon {
    font-size: 24px;
    line-height: 1;
}

.verify-mobile-number {
    display: inline-block;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 15px;
}

.verify-method-card {
    border-radius: 16px;
}

.verify-method-icon {
    font-size: 42px;
    line-height: 1;
}

.verify-number {
    display: inline-block;
    background: #f8f9fa;
    border: 1px dashed #adb5bd;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
}

.verify-status {
    min-height: 24px;
    font-size: 13px;
}


/* =========================
   Authentication Page
   ========================= */

.auth-page {
    position: relative;
    min-height: calc(100vh - 1px);
    background: #f4f8fc;
    display: flex;
    align-items: center;
    color: var(--okmcc-dark);
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}


/* Page Heading */

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0b3a6b;
}

.auth-subtitle {
    color: #0b3a6b;
}


/* Keep authentication heading text readable over the light background image */

.auth-page .text-white .auth-title,
.auth-page .text-white .auth-subtitle {
    color: #0b3a6b;
}


/* Login/Register bottom link */

.auth-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}

.auth-link:hover {
    color: #fff;
    text-decoration: underline;
}


/* Authentication Card */

.auth-card,
.verification-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}


/* Form Content */

.auth-page p,
.auth-page label {
    color: var(--okmcc-dark);
}


/* District Notice */

.district-notice {
    background: rgba(255, 255, 255, 0.96);
    border-left: 5px solid var(--bs-primary);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.district-notice-title {
    font-weight: 700;
    margin-bottom: 3px;
}

.district-notice-text {
    color: #555;
    font-size: 14px;
}


/* Verification Mobile */

.verify-mobile {
    color: black;
    font-weight: 700;
    padding-bottom: 14px;
}


/* Verification Method */

.verification-method {
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.verification-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.verification-icon {
    font-size: 42px;
    margin-bottom: 15px;
}


/* Verification Number / Code */

.verification-number,
.verification-code {
    display: inline-block;
    background: #f7f8fa;
    border: 1px dashed #adb5bd;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
}

.verification-code {
    font-size: 32px;
}


/* Verification Status */

.verification-status {
    margin-top: 15px;
    min-height: 40px;
    font-size: 13px;
    color: #6c757d;
}


/* Verification States */

.verification-selected {
    border-color: var(--bs-primary);
}

.verification-checking {
    margin-top: 18px;
    text-align: center;
}

.verification-loading {
    width: 32px;
    height: 32px;
}

.verification-retry {
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff8e1;
    color: #795548;
    font-size: 13px;
}


/* =========================
   Mobile
   ========================= */

@media (max-width: 767.98px) {

    .auth-page {
        align-items: flex-start;
    }

    .auth-card,
    .verification-card {
        padding: 22px 18px;
    }

    .auth-title {
        font-size: 1.65rem;
    }

    .verification-method {
        padding: 24px 18px;
    }
}