:root {
    /* Colors - Synchronized directly from official logo.svg and branding */
    --color-primary: #025a10; /* Exact color from logo */
    --color-primary-light: #007441; /* Complementary lighter green */
    --color-primary-dark: #013b0a; /* Darker green */
    --color-secondary: #025a10; 
    --color-secondary-light: #007441;
    --color-accent: #fcee21; /* Branding yellow */
    --color-bg: #fdfdfb;
    /* Slightly warmer background */
    --color-surface: #ffffff;
    --color-text: #2d3419;
    /* Darker olive for better contrast */
    --color-text-light: #5a643b;
    --color-white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(148, 168, 50, 0.3);

    --radius-md: 8px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: var(--color-white);
}

.btn-secondary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Footer */
.footer {
    background-color: #f7f9f0;
    /* Much lighter greenish-grey footer */
    color: var(--color-text);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(148, 168, 50, 0.1);
}

.footer-links h5 {
    color: var(--color-primary-dark);
}

.footer-links a {
    color: var(--color-text-light);
}

.copyright {
    color: var(--color-text-light);
    border-top: 1px solid rgba(148, 168, 50, 0.1);
}

.btn-outline-light {
    border-color: var(--color-white);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    height: 3px;
    width: 100%;
    background-color: var(--color-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.logo-icon {
    height: 40px;
    width: 40px;
}

.logo-text {
    height: 30px; /* Adjust height of text image */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.2s;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('assets/hero_bg_cardamom.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeIn Up 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: var(--color-accent);
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Store Badges */
.store-badges-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.app-store-badge,
.play-store-badge {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

.app-store-badge:hover,
.play-store-badge:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        gap: 8px;
    }

    .logo-icon {
        height: 28px;
        width: 28px;
    }

    .logo-text {
        height: 16px;
        max-width: 180px;
        object-fit: contain;
    }

    .desktop-only {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.3s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .store-badges-container {
        justify-content: center;
    }
    
    .app-showcase .store-buttons {
        justify-content: center;
    }
}

/* Features Section */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.section-title span {
    color: var(--color-text-light);
    font-weight: 400;
    display: block;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-family: var(--font-body);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(2, 90, 16, 0.1), rgba(0, 205, 172, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.feature-text {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-link {
    color: var(--color-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.feature-link:hover {
    gap: 0.75rem;
    color: var(--color-secondary);
}

/* Process Section */
.bg-light {
    background-color: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.process-image {
    position: relative;
    padding: 1rem;
}

.process-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    transform: rotate(-3deg);
    z-index: -1;
    opacity: 0.1;
}

.process-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    width: 100%;
    display: block;
    transition: var(--transition);
}

.process-image:hover img {
    transform: translateY(-10px);
}

.process-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
}

.process-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    border-color: rgba(22, 163, 74, 0.1);
    transform: translateX(10px);
}

.check-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(0, 205, 172, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #689172; /* Light sage green for readability */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #689172;
    border-radius: var(--radius-full);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-white);
    opacity: 0.9;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--color-secondary);
    transform: translateX(3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 1;
    color: var(--color-white);
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Sections Details */
.hidden {
    display: none;
}

.details-panel {
    background: var(--color-bg);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-secondary);
    animation: fadeIn 0.3s ease-out;
}

.details-panel h4 {
    color: var(--color-primary);
    margin-top: 0;
}

.grade-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.grade-list span {
    background: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-primary-dark);
}

.toggle-details {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
}

/* History Content */
.history-content {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(22, 163, 74, 0.1);
}

.faq-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(0, 205, 172, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.faq-question {
    flex-grow: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
}

.faq-chevron {
    color: var(--color-text-light);
    transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(249, 250, 251, 0.5);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 4.5rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-header[aria-expanded="true"]+.faq-answer {
    max-height: 200px;
    /* Adjust based on content */
}

.contact-card {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    text-align: left;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .contact-map {
        height: 250px;
    }
}

.contact-info a {
    color: var(--color-white);
    font-weight: 600;
    transition: all 0.2s;
}

.contact-info a:hover {
    color: var(--color-secondary);
    transform: translateX(3px);
}

/* Visual Enhancements */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.split-image img:hover {
    transform: scale(1.02);
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step-card {
    background: var(--color-white);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.step-icon-small {
    background: var(--color-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .process-steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* App Showcase Section */
.app-showcase {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    padding: 3rem;
    margin-top: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.app-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(8px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.app-feature-item:hover .app-feature-icon {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: var(--color-white);
    box-shadow: 0 12px 24px rgba(0, 205, 172, 0.3);
}

.app-feature-item span {
    font-weight: 500;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-white);
    color: var(--color-text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 0.2s;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.store-btn-icon {
    width: 24px;
    height: 24px;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    line-height: 1.2;
}

.store-btn-text strong {
    font-size: 1rem;
}

.app-image {
    position: relative;
}

.app-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    max-width: 80%;
    margin: 0 auto;
}

.app-image img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

@media (max-width: 900px) {
    .app-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-content p,
    .app-features {
        margin-left: auto;
        margin-right: auto;
    }

    .app-features {
        justify-content: center;
    }

    .app-feature-item {
        justify-content: center;
        text-align: left;
    }

    .store-buttons {
        justify-content: center;
    }

    .app-image {
        order: -1;
        margin-bottom: 2rem;
    }
}

/* Authentication Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f1f5f9;
    /* Neutral light background */
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.auth-overlay {
    display: none;
    /* Removed dark green overlay */
}

.auth-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 900px;
    /* Wider for split layout */
    display: flex;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out;
}

.auth-image-side {
    flex: 1;
    background-image: url('assets/auth_image.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.auth-image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.auth-form-side {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.auth-header h2 {
    color: var(--color-primary-dark);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    box-sizing: border-box;
    /* Fix for padding affecting width */
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(2, 90, 16, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.forgot-link {
    color: var(--color-primary);
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.auth-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.auth-footer a {
    color: var(--color-primary);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Auth Navbar Override */
.auth-nav {
    position: relative;
    z-index: 2;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-nav .logo span {
    color: var(--color-primary-dark);
}

.auth-nav .nav-links a {
    color: var(--color-text);
}

.auth-nav .nav-links a:hover {
    color: var(--color-primary);
}

/* Responsive adjustments for Auth */
@media (max-width: 768px) {
    .auth-card {
        flex-direction: column;
        max-width: 450px;
    }

    .auth-image-side {
        display: none;
        /* Hide image on mobile to focus on form */
    }

    .auth-form-side {
        padding: 2rem;
    }
}