/* ========================================================================= */
/* CIVICITA - FULL STYLESHEET (REVISED THEME)                            */
/* ========================================================================= */

/* ==================== CSS VARIABLES (Synced with Admin Theme) ==================== */
:root {
    /* Colors from Admin Dashboard */
    --primary: #0d9488;
    --primary-hover: #0f766e;
    --accent: #f59e0b; /* Using 'warning' color as accent */
    --accent-hover: #e48f0a; /* Darker accent for hover */
    --text-primary: #18283d;
    --text-secondary: #6b7280;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --border-light: #e5e7eb;

    /* Shadows & Other vars */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --dark: #1f2937;
    --gradient-primary: linear-gradient(135deg, var(--primary-hover), var(--primary));
    --gradient-accent: linear-gradient(135deg, #fcd34d, var(--accent));
    --navbar-height: 80px;
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
section {
    padding: 6rem 0;
}
.section-header {
    margin-bottom: 3rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

/* ==================== NAVBAR STYLES ==================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
}
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.025em;
}
.navbar-brand:hover {
    color: var(--primary-hover);
}
.logo-img {
    height: 50px;
    margin-right: 0.75rem;
}
.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background-color: rgba(13, 148, 136, 0.08); /* Adjusted to new primary color */
}
.btn-login {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    margin-left: 1rem;
    text-decoration: none;
}
.btn-login:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 991.98px) {
    .navbar {
        height: auto;
        min-height: var(--navbar-height);
        padding: 0.75rem 1rem;
    }
    .navbar-collapse {
        padding: 1rem 0;
        margin-top: 1rem;
        border-top: 1px solid var(--border-light);
    }
    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        margin: 0;
        display: flex;
        align-items: center;
        height: 100%;
    }
    .btn-login {
        margin: 0.5rem 0 0 0;
        width: auto;
        align-self: flex-start;
    }
    .navbar-toggler {
        padding: 0.5rem;
    }
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }
}
@media (max-width: 575.98px) {
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
}

/* ==================== HERO SECTION (HOMEPAGE) ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../img/background-hero.jpeg') center/cover no-repeat;
    padding: calc(var(--navbar-height) + 4rem) 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.hero-highlight {
    background: var(--accent); /* Updated to accent color */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary-hero {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.btn-primary-hero:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}
.btn-secondary-hero {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
.btn-secondary-hero:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: calc(100vh - var(--navbar-height));
        padding: calc(var(--navbar-height) + 2rem) 0 2rem;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-description { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn-primary-hero, .btn-secondary-hero { justify-content: center; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 2rem; }
    .hero-section {
        padding: calc(var(--navbar-height) + 1rem) 0 1rem;
    }
}

/* ==================== STATS SECTION (HOMEPAGE) ==================== */
.stats-section {
    background: white;
    border-top: 1px solid var(--border-light);
    padding: 2rem 0;
    margin-top: -1px;
}
.stat-item {
    text-align: center;
    padding: 1rem;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==================== FEATURES SECTION (HOMEPAGE) ==================== */
.features-section {
    background: var(--bg-gray);
}
.features-list {
    margin-top: 2rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}
.feature-icon.icon-volunteer { background: var(--gradient-primary); }
.feature-icon.icon-certificate { background: var(--gradient-accent); }
.feature-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}
.features-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}
@media (max-width: 767.98px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .feature-icon { margin-right: 0; margin-bottom: 1rem; }
}

/* ==================== HOW IT WORKS SECTION (HOMEPAGE) ==================== */
.how-it-works-section {
    background: white;
}
.step-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.step-card-icon {
    font-size: 2rem;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
}
.step-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.step-card-description {
    color: var(--text-secondary);
    font-size: 1rem;
}
.how-it-works-section .col-md-4:nth-child(2) { transition-delay: 0.2s; }
.how-it-works-section .col-md-4:nth-child(3) { transition-delay: 0.4s; }
@media (max-width: 767.98px) {
    .step-card { margin-bottom: 2rem; }
}

/* ==================== WHO CAN JOIN SECTION (HOMEPAGE) ==================== */
.who-can-join-section {
    background: var(--bg-gray);
}
.join-row {
    align-items: center;
    margin-bottom: 5rem;
}
.join-row:last-child {
    margin-bottom: 0;
}
.join-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.join-icon {
    font-size: 6rem;
    color: var(--primary);
    padding: 2rem;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.1); /* Adjusted to new primary color */
    transition: all 0.3s ease;
}
.join-row:hover .join-icon {
    transform: scale(1.1);
    color: var(--primary-hover);
}
.join-text-col h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.join-text-col p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.who-can-join-section .join-row:nth-child(2) { transition-delay: 0.2s; }
.who-can-join-section .join-row:nth-child(3) { transition-delay: 0.4s; }

@media (min-width: 992px) {
    .join-row:nth-child(even) .join-text-col {
        order: 1;
    }
    .join-row:nth-child(even) .join-icon-col {
        order: 2;
    }
}
@media (max-width: 991.98px) {
    .join-row {
        flex-direction: column;
        text-align: center;
        margin-bottom: 3rem;
    }
    .join-text-col {
        margin-top: 2rem;
    }
    .join-row .col-lg-6 { order: unset !important; }
}

/* ==================== FOOTER STYLES ==================== */
.footer {
    background-color: var(--dark);
    color: var(--gray-200);
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}
.footer .container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.025em;
    text-decoration: none;
}
.footer-brand img {
    height: 50px;
    margin-right: 0.75rem;
}
.footer p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--gray-200); text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-social-icons a {
    color: var(--gray-200);
    font-size: 1.5rem;
    margin-right: 1.25rem;
    transition: color 0.2s ease;
}
.footer-social-icons a:hover { color: var(--accent); }
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-600);
}

/* ==================== ANIMATIONS ==================== */
.animate-fade-up, .animate-slide-left, .animate-slide-right {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-fade-up { transform: translateY(30px); }
.animate-slide-left { transform: translateX(-40px); }
.animate-slide-right { transform: translateX(40px); }
.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}
.float-gentle {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ==================== AUTH PAGES (LOGIN & REGISTER) ==================== */
.auth-section {
    padding: calc(var(--navbar-height) + 4rem) 0 4rem;
    background-color: var(--bg-gray);
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.auth-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}
.auth-card-header {
    text-align: center;
    margin-bottom: 2rem;
}
.auth-logo img {
    height: 50px;
    margin-bottom: 1rem;
}
.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.auth-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}
.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}
.form-control, .form-select {
    border-radius: 8px;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}
.form-control {
    padding-left: 2.75rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15); /* Adjusted to new primary color */
    outline: none;
}
.input-group-icon {
    position: relative;
}
.input-group-icon .fa-solid, .input-group-icon .fas {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    transition: color 0.2s ease;
}
.form-control:focus + i, .input-group-icon:focus-within i {
    color: var(--primary);
}
.form-text-link {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.form-text-link:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}
.form-check-input {
    border-color: var(--border-light);
}
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
.form-check-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.btn-auth-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}
.btn-auth-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.auth-footer-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.auth-footer-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.auth-footer-link a:hover {
    text-decoration: underline;
}

/* ==================== AUTH PAGE (SPLIT SCREEN) STYLES ==================== */
.auth-section-split {
    background-color: var(--bg-gray);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--navbar-height) + 2rem) 1rem 2rem;
}
.auth-container-split {
    display: flex;
    max-width: 1100px;
    margin: auto;
    width: 100%;
    background-color: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}
.auth-image-side {
    flex-basis: 50%;
    background: linear-gradient(rgba(13, 148, 136, 0.8), rgba(15, 118, 110, 0.7)), url('../img/background-hero.jpeg') center/cover no-repeat; /* Adjusted gradient */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
}
.auth-image-content {
    text-align: center;
    z-index: 2;
    max-width: 400px;
}
.auth-logo-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 2rem;
}
.auth-logo-alt img {
    height: 40px;
    filter: brightness(0) invert(1);
}
.auth-image-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.auth-image-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}
.auth-logo-mobile {
    display: none;
    margin-bottom: 1.5rem;
}
.auth-logo-mobile img {
    height: 50px;
}
.auth-form-side {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}
.auth-form-wrapper {
    width: 100%;
    max-width: 480px;
}

/* ==================== ACCOUNT TYPE CARD (REGISTER) ==================== */
.account-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.5rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}
.account-type-card:hover {
    border-color: var(--primary);
    background-color: #f8f9fa;
    transform: translateY(-4px);
}
.account-type-card.active {
    border-color: var(--primary);
    background-color: rgba(13, 148, 136, 0.05); /* Adjusted to new primary color */
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.1); /* Adjusted to new primary color */
}
.account-type-card .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}
.account-type-card.active .icon {
    transform: scale(1.1);
}
.account-type-card .title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* ==================== FORM HELPERS & CONDITIONAL FIELDS (REGISTER) ==================== */
.conditional-group {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
}
.form-group {
    margin-bottom: 1rem;
}
.form-row-grid .form-group {
    margin-bottom: 0;
}
.form-control.with-icon {
    padding-left: 1rem;
}

/* ==================== KARTU PILIHAN KELAS (REGISTER) ==================== */
.class-selection-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem;
    max-height: 140px;
    overflow-y: auto;
    background-color: var(--bg-gray);
    transition: all 0.3s ease;
}
.class-selection-card {
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}
.class-selection-card span {
    display: block;
    text-align: center;
    padding: 0.75rem 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}
.class-selection-card:hover span {
    border-color: var(--primary);
    color: var(--primary);
}
.class-selection-card input[type="checkbox"]:checked + span {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 2px 5px rgba(13, 148, 136, 0.2); /* Adjusted to new primary color */
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE DESIGN (GLOBAL & AUTH) ==================== */
@media (max-width: 991.98px) {
    .section-header { text-align: center !important; }
    .section-subtitle { margin-left: auto; margin-right: auto; }
    .footer-col {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-brand { justify-content: center; }
    .footer-social-icons { text-align: center; }

    /* Auth Responsive */
    .auth-section-split {
        padding: calc(var(--navbar-height) + 1rem) 1rem 1rem;
        min-height: calc(100vh - var(--navbar-height));
    }
    .auth-container-split {
        flex-direction: column;
        background-color: transparent;
        box-shadow: none;
        border: none;
    }
    .auth-image-side {
        display: none;
    }
    .auth-form-side {
        flex-basis: 100%;
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        background-color: var(--bg-white);
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        padding: 2.5rem 1.5rem;
    }
    .auth-logo-mobile {
        display: block;
    }
    .auth-title {
        font-size: 1.5rem;
    }
    .auth-card-header {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    section { padding: 4rem 0; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 575.98px) {
    .section-title { font-size: 1.75rem; }
    .form-row-grid {
        grid-template-columns: 1fr;
    }

    /* Auth Responsive Small */
    .auth-section-split {
        padding: calc(var(--navbar-height) + 0.5rem) 0.75rem 0.5rem;
    }
    .auth-form-side {
        padding: 2rem 1.25rem;
    }
    .auth-title {
        font-size: 1.25rem;
    }
    .auth-subtitle {
        font-size: 0.9rem;
    }
    .btn-auth-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==================== OTP Styles (Included for completeness) ==================== */
.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
}
.otp-input {
    width: 48px;
    height: 58px;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    background-color: var(--bg-gray);
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -moz-appearance: textfield;
}
.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.otp-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15); /* Adjusted to new primary color */
}
.otp-timer-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
#resend-otp-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    display: none;
}
#resend-otp-link:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}