:root {
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --secondary-gradient: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --bg-color: #f1f5f9;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --primary-color: #6366f1;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
}

/* Login Page Styles */
.login-body {
    background: #6366f1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.login-body::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(168, 85, 247, 0.2) 70%, transparent 100%);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    filter: blur(80px);
    z-index: 1;
}

.login-body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(236, 72, 153, 0.1) 70%, transparent 100%);
    border-radius: 50%;
    bottom: -200px;
    left: -150px;
    filter: blur(60px);
    z-index: 1;
}

.login-container {
    width: 100%;
    max-width: 480px;
    padding: 24px;
    z-index: 10;
}

.login-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.logo-wrapper {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.logo-wrapper img {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.login-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #4f46e5;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.login-header p {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 400;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-login {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: white;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.error-message {
    background: #fef2f2;
    color: #ef4444;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #fee2e2;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* Dashboard Styles */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    background-color: #f1f5f9;
}

.sidebar {
    width: 280px;
    background: white;
    border-right: 1px solid var(--border-color);
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-logo {
    padding: 32px 24px 0 24px;
    flex-shrink: 0;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 24px 32px 24px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6366f1, #a855f7);
    border-radius: 100px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4f46e5, #9333ea);
}

.sidebar-logo-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding: 0 8px;
}

.sidebar-logo h2 {
    font-size: 22px;
    font-weight: 700;
    color: #4f46e5;
    letter-spacing: -0.5px;
}

.sidebar-menu {
    list-style: none;
    flex-grow: 1;
}

.sidebar-menu li {
    margin-bottom: 4px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: #64748b;
    border-radius: 14px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.sidebar-menu a:hover,
.sidebar-menu li.active a {
    background: #f5f3ff;
    color: #4f46e5;
}

.sidebar-menu a i {
    font-size: 20px;
}

.main-content {
    flex-grow: 1;
    padding: 24px 48px 48px 48px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.top-up-bar {
    position: sticky;
    top: 24px;
    z-index: 900;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 12px 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.header-top h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Cards & Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.stat-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card .value {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
}

/* Workflow Visualization */
.workflow-section {
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    margin-bottom: 48px;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 0;
    position: relative;
    gap: 12px;
}

.workflow-steps::after {
    content: '';
    position: absolute;
    height: 4px;
    background: #f1f5f9;
    top: 36px;
    left: 48px;
    right: 48px;
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: white;
    border: 4px solid white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-item.active .step-icon {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

.step-label {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-timer {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 100px;
}

/* Table */
.data-table-container {
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 20px;
    color: #64748b;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #f1f5f9;
}

td {
    padding: 20px;
    font-size: 15px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

tr:hover td {
    background: #f8fafc;
}

.badge {
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-warning {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}

.badge-info {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.badge-success {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.badge-danger {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* New Form & UI Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.input-modern {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-modern:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
}

.btn-modern-secondary {
    padding: 14px 40px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    background: #f8fafc;
}

.file-upload-wrapper:hover {
    border-color: #6366f1;
    background: #f5f3ff;
}

.file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748b;
    pointer-events: none;
}

.file-label i {
    width: 48px;
    height: 48px;
    color: #6366f1;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0;
}

.btn-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
}

/* Vertical Progress Steps */
.step-progress-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-marker.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.step-info {
    padding-top: 4px;
}

.step-title {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #1e293b;
}

.step-desc {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.step-line {
    width: 2px;
    height: 30px;
    background: #e2e8f0;
    margin-left: 15px;
}

.step-line.active {
    background: #6366f1;
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        width: 80px;
    }

    .sidebar-logo {
        padding: 20px 10px 0 10px;
    }

    .sidebar-nav {
        padding: 0 10px 20px 10px;
    }

    .sidebar-logo-inner h2,
    .sidebar-menu span {
        display: none;
    }

    .sidebar-menu a {
        justify-content: center;
        padding: 14px;
    }
}

@media (max-width: 768px) {

    /* Main Layout - Standard Mobile View */
    .dashboard-container {
        display: block;
        /* Remove flex to allow stacking if needed, but sidebar is fixed now/bottom */
    }

    /* Convert Sidebar to Bottom Navigation */
    .sidebar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        /* Fixed height for bottom nav */
        padding: 0 10px;
        background: white;
        border-right: none;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        flex-direction: row;
        /* Horizontal alignment */
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .sidebar-logo {
        display: none;
        /* Hide logo in bottom nav */
    }

    .sidebar-menu {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
        /* Distribute items evenly */
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .sidebar-menu li {
        width: 100%;
        margin-bottom: 0;
        /* Reset margin */
        display: flex;
        justify-content: center;
    }

    .sidebar-menu a {
        flex-direction: column;
        /* Icon top, text bottom */
        gap: 4px;
        padding: 8px 4px;
        border-radius: 8px;
        font-size: 9px;
        text-align: center;
        width: 100%;
        justify-content: center;
        color: #94a3b8;
    }

    .sidebar-menu a i {
        font-size: 20px;
        /* Larger icons */
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar-menu a:hover,
    .sidebar-menu li.active a {
        background: transparent;
        color: #6366f1;
    }

    .sidebar-menu li.active a i {
        background: #e0e7ff;
        /* Highlight circle behind icon */
        border-radius: 50%;
        color: #4f46e5;
        width: 32px;
        height: 32px;
        padding: 6px;
        margin-bottom: -4px;
        /* Adjust layout */
        box-shadow: 0 2px 5px rgba(99, 102, 241, 0.2);
    }

    /* Main Content Adjustments */
    .main-content {
        padding: 20px 16px 90px 16px;
        /* Bottom padding to clear Nav */
        width: 100%;
        max-width: 100%;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .header-top h1 {
        font-size: 24px;
    }

    .user-profile {
        width: 100%;
        justify-content: space-between;
    }

    /* Grids & Tables */
    .stats-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 16px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        /* Stack inputs */
        gap: 16px;
    }

    .data-table-container {
        padding: 16px;
        overflow-x: auto;
        /* Scrollable tables */
        border-radius: 16px;
    }

    table {
        min-width: 600px;
        /* Force scroll if needed */
    }

    /* Workflow Stack */
    .workflow-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-left: 20px;
        /* Space for vertical line */
    }

    .workflow-steps::after {
        /* Vertical Line Mode */
        height: auto;
        width: 2px;
        top: 0;
        bottom: 0;
        left: 36px;
        /* Align with icons */
        right: auto;
        background: #e2e8f0;
    }

    .step-item {
        flex-direction: row;
        width: 100%;
        margin-bottom: 24px;
        align-items: center;
        gap: 16px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        z-index: 2;
        /* Above line */
    }

    .step-label {
        font-size: 12px;
        text-align: left;
    }
}

/* Utility: Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =========================================
   New Split Screen Login Styles
   ========================================= */

.login-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* --- Left Side: Visuals --- */
.login-visual {
    flex: 1;
    background: linear-gradient(135deg, #1d4e4f 0%, #2c7a7b 50%, #38b2ac 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: white;
    overflow: hidden;
}

/* Abstract Circuit Pattern Overlay */
.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.3;
}

.visual-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.govt-logo img {
    height: 80px;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.digital-text-group {
    margin-bottom: 20px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #e6fffa;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #b2f5ea;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stylized-text {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: #ed8936;
    /* Orange-ish */
    margin-top: -10px;
    margin-bottom: 40px;
    transform: rotate(-5deg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.visual-footer-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 60px;
    opacity: 0.9;
}

.brand-text {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
}

.brand-text:first-child {
    border-left: none;
    padding-left: 0;
}

/* --- Right Side: Form --- */
.login-form-side {
    width: 450px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    flex-shrink: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 20;
}

.login-form-container {
    width: 100%;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.form-header p {
    color: #718096;
    font-size: 0.95rem;
}

.alert-error {
    background-color: #fff5f5;
    color: #c53030;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border-left: 4px solid #f56565;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2d3748;
    transition: all 0.2s;
}

.form-control:focus {
    background-color: white;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
    outline: none;
}

.margin-bottom-lg {
    margin-bottom: 20px;
}

.margin-bottom-xl {
    margin-bottom: 32px;
}

.btn-signin {
    width: 100%;
    background-color: #1a202c;
    /* Dark blue/black */
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-signin:hover {
    background-color: #2d3748;
}

.copyright-text {
    margin-top: auto;
    text-align: center;
    font-size: 0.8rem;
    color: #a0aec0;
    padding-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .login-visual {
        display: none;
        /* Hide visual on tablet/mobile or stack */
    }

    .login-form-side {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        box-shadow: none;
    }

    .login-wrapper {
        background-color: #f7fafc;
        justify-content: center;
        align-items: center;
    }

    .login-form-side {
        background: white;
        border-radius: 16px;
        height: auto;
        padding: 40px;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }
}