:root {
    /* Color Palette - Premium White & Orange Theme */
    --auth-primary: #f97316; /* Vibrant Orange */
    --auth-primary-hover: #ea580c; 
    --auth-accent: #fb923c;
    --auth-slate-50: #fafafa;
    --auth-slate-100: #f5f5f5;
    --auth-slate-200: #e5e5e5;
    --auth-slate-600: #737373;
    --auth-slate-700: #404040;
    --auth-slate-800: #262626;
    --auth-slate-900: #171717; /* Charcoal */
    
    --auth-glass-bg: rgba(255, 255, 255, 0.98);
    --auth-overlay: rgba(23, 23, 23, 0.5); /* Charcoal Overlay */
    --auth-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    --auth-glow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none; /* Changed back to hidden by default for better control */
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

.auth-modal-overlay.active {
    display: flex !important;
    opacity: 1;
    pointer-events: all;
}

.auth-modal-container {
    position: relative;
    width: 100%;
    max-width: 480px; 
    max-height: 95vh;
    transform: scale(0.95) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1001;
}

.auth-modal-container.wide {
    max-width: 620px; 
}

.auth-modal-overlay.active .auth-modal-container {
    transform: scale(1) translateY(0);
}

.auth-modal-content {
    display: none;
    background: var(--auth-glass-bg);
    border-radius: 1.5rem;
    overflow-y: auto;
    max-height: 90vh;
    box-shadow: var(--auth-shadow);
    border: 1px solid var(--auth-slate-200);
    position: relative;
}

.auth-modal-content.active {
    display: block;
    animation: contentFade 0.3s ease forwards;
}

@keyframes contentFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--auth-slate-200);
    color: var(--auth-slate-900);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.auth-modal-close:hover {
    background: var(--auth-slate-100);
    transform: rotate(90deg);
    color: var(--auth-primary);
    border-color: var(--auth-primary);
}

/* Modal-Specific Component Overrides */
.auth-modal-content .professional-card {
    box-shadow: none !important;
    border: none !important;
    padding: 2.5rem !important; /* Premium unified padding */
    background: transparent !important;
}

@media (max-width: 500px) {
    .auth-modal-content .professional-card {
        padding: 2rem 1.25rem !important;
    }
}

/* Typography Enhancements */
.auth-modal-content h2.auth-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--auth-slate-900);
    margin-bottom: 0.35rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.auth-modal-content .auth-subtitle {
    text-align: center;
    color: var(--auth-slate-600);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .auth-modal-content h2.auth-title {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    .auth-modal-content .auth-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }
}

/* Form Styles */
.auth-modal-content .form-group {
    margin-bottom: 1.25rem;
}

.auth-modal-content .form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--auth-slate-800);
    margin-bottom: 0.5rem;
    margin-left: 0.1rem;
}

.auth-modal-content .minimal-input {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 1.5px solid var(--auth-slate-200);
    border-radius: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #fff;
    color: var(--auth-slate-900);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.auth-modal-content .minimal-input:focus {
    outline: none;
    border-color: var(--auth-primary);
    background: #fff;
    box-shadow: var(--auth-glow);
}

/* Button Overhaul - Pure Orange & White */
.btn-primary-action, .btn-luxury-submit, .btn-primary {
    background: var(--auth-primary) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important; /* Unified padding */
    border-radius: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    border: 2px solid var(--auth-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    min-height: 3.2rem; /* Consistent height */
}

.btn-primary-action:hover, .btn-luxury-submit:hover, .btn-primary:hover {
    background: var(--auth-primary-hover) !important;
    border-color: var(--auth-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
    background: white !important;
    color: var(--auth-primary) !important;
    border: 2px solid var(--auth-primary) !important;
    padding: 0.75rem 1.5rem !important; /* Unified padding */
    border-radius: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem; /* Consistent height */
    box-sizing: border-box;
}

.btn-secondary:hover {
    background: var(--auth-slate-50) !important;
    transform: translateY(-2px);
}

.link-primary {
    color: var(--auth-primary);
    font-weight: 700;
    text-decoration: none;
}

/* Footer & Dividers */
.auth-modal-content .auth-footer {
    padding-top: 1.25rem;
    text-align: center;
    color: var(--auth-slate-600);
    font-size: 0.95rem;
    border-top: 1px solid var(--auth-slate-100);
}

.btn-container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid var(--auth-slate-100) !important;
}

.btn-container .btn-primary, 
.btn-container .btn-secondary {
    width: auto !important;
    min-width: 130px !important;
    margin-top: 0 !important;
}

@media (max-width: 480px) {
    .btn-container {
        flex-direction: column-reverse !important;
    }
    .btn-container .btn-primary, 
    .btn-container .btn-secondary {
        width: 100% !important;
    }
}

.auth-modal-content .auth-footer a {
    color: var(--auth-primary);
    font-weight: 700;
    text-decoration: none;
}

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

/* Choice Chip Checkboxes */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-item:hover {
    border-color: var(--auth-primary);
    background: #fff;
    transform: translateY(-1px);
}

.checkbox-item.checked {
    background: var(--auth-primary);
    border-color: var(--auth-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

/* Enhanced File Upload Boxes */
.file-upload-box {
    position: relative;
    width: 100%;
    min-height: 120px;
    border: 2px dashed #e2e8f0;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1.5rem;
    text-align: center;
    overflow: hidden;
}

@media (max-width: 480px) {
    .file-upload-box {
        min-height: 100px;
        padding: 1.25rem 1rem;
    }
    .file-upload-box i {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
}

.file-upload-box:hover {
    border-color: var(--auth-primary);
    background: #fffaf5;
    transform: scale(1.01);
}

.file-upload-box i {
    font-size: 2.2rem;
    color: var(--auth-primary);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.file-upload-box:hover i {
    transform: translateY(-3px);
}

.file-upload-box p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--auth-slate-600);
    margin: 0;
}

.file-upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.logo-preview {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
}

.auth-modal-content .minimal-input-large:focus {
    border-color: var(--auth-primary);
    box-shadow: var(--auth-glow);
}

/* Multi-step Caterer Adjustments */
.form-step {
    display: none;
    animation: fadeInStep 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

#catererForm .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 500px) {
    #catererForm .form-grid:not(.full-width-grid) {
        grid-template-columns: 1fr 1fr;
    }
    #catererForm .full-width {
        grid-column: span 2;
    }
}

.progress-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    position: relative;
    padding: 0 0.5rem;
}

.progress-step {
    width: 2.25rem;
    height: 2.25rem;
    background: #fff;
    border: 1.5px solid var(--auth-slate-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--auth-slate-600);
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
}

.progress-step.active {
    background: var(--auth-primary);
    border-color: var(--auth-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.progress-step .step-label {
    position: absolute;
    top: 2.75rem;
    font-size: 0.7rem;
    white-space: nowrap;
    color: var(--auth-slate-600);
    font-weight: 600;
}

/* Validation & Error States */
.error-drawer {
    display: none !important;
    color: #ef4444 !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    margin-top: 0.4rem !important;
    margin-left: 0.2rem !important;
    animation: fadeInError 0.3s ease forwards !important;
}

.input-wrapper.error .error-drawer {
    display: block !important;
}

.auth-modal-content .input-wrapper.error .minimal-input,
.input-wrapper.error .minimal-input {
    border-color: #ef4444 !important;
    background: #fffafa !important;
}

@keyframes fadeInError {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Enhanced Alert Error for Modals */
.alert-error {
    background: #fff5f5 !important;
    border: 1px solid #feb2b2 !important;
    color: #c53030 !important;
    padding: 1rem !important;
    border-radius: 0.85rem !important;
    display: flex; /* Removed !important to allow inline display: none to work */
    align-items: center !important;
    gap: 0.75rem !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 12px rgba(197, 48, 48, 0.08) !important;
    animation: fadeInError 0.3s ease forwards;
    margin-bottom: 1.5rem !important;
}

.alert-error i {
    color: #f56565 !important;
    font-size: 1.15rem !important;
}


/* Password Toggle Button */
.password-field-wrapper {
    position: relative;
    width: 100%;
}

.password-toggle-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--auth-slate-600);
    cursor: pointer;
    background: transparent !important;
    border: none !important;
    padding: 0.6rem;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    opacity: 0.7;
    box-shadow: none !important;
}

.password-toggle-btn:hover {
    color: var(--auth-primary);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.password-toggle-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.password-toggle-btn i {
    pointer-events: none;
}

/* Adjust input padding when toggle is present */
.minimal-input.has-toggle {
    padding-right: 3.2rem !important;
}

body.modal-open {
    overflow: hidden;
}

/* Fix browser autofill background changing the design */
.auth-modal-content .minimal-input:-webkit-autofill,
.auth-modal-content .minimal-input:-webkit-autofill:hover,
.auth-modal-content .minimal-input:-webkit-autofill:focus,
.auth-modal-content .minimal-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: var(--auth-slate-900) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.auth-modal-content .input-wrapper.error .minimal-input:-webkit-autofill,
.input-wrapper.error .minimal-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fffafa inset !important;
}

/* ===================================================
   MOBILE APPS CONTEXT (Extreme Robustness)
   =================================================== */
@media (max-width: 480px) {
    .auth-modal-overlay {
        padding: 1rem 0 !important;
        align-items: flex-start !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .auth-modal-container {
        width: 95% !important;
        height: auto !important;
        max-width: 95% !important;
        max-height: none !important;
        border-radius: 1.25rem !important;
        margin: 1rem auto !important;
        transform: scale(0.95) translateY(20px) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    }

    .auth-modal-overlay.active .auth-modal-container {
        transform: scale(1) translateY(0) !important;
    }

    .auth-modal-content {
        height: auto !important;
        max-height: none !important;
        border-radius: 1.25rem !important;
        background: #ffffff !important;
        display: none;
        overflow-y: visible !important;
    }

    .auth-modal-content.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important;
    }

    .auth-modal-content .professional-card {
        padding: 3.5rem 1.25rem 2.5rem !important;
        height: auto !important;
        overflow: visible !important;
    }

    .auth-modal-close {
        top: 0.75rem !important;
        right: 0.75rem !important;
        z-index: 10001 !important;
        background: rgba(255,255,255,0.95) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
    }
}

/* SMART VALIDATION ENHANCEMENTS */

/* Input Validation Icons */
.input-wrapper {
    position: relative;
    display: block;
}

.input-wrapper .validation-icon {
    position: absolute;
    right: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    display: none !important;
    pointer-events: none;
    z-index: 5;
}

.input-wrapper.error .validation-icon.error-icon {
    display: block !important;
    color: #ef4444;
}

.input-wrapper.success .validation-icon.success-icon {
    display: block !important;
    color: #10b981;
}

/* Special right padding for password inputs with toggle */
.input-wrapper.has-password-toggle .validation-icon {
    right: 3.5rem;
}

/* Scanning Status Badges */
.scan-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: var(--auth-slate-100);
    color: var(--auth-slate-600);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.file-upload-box.scanning .scan-status-badge {
    display: block !important;
    background: var(--auth-primary);
    color: white;
    animation: badgePulse 1.5s infinite;
/* ===================================================
   ELITE KYC GRID & CARDS (Rock-Solid Stability)
   =================================================== */
.kyc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.kyc-card {
    background: #fff;
    border: 1.5px dashed var(--auth-slate-200);
    border-radius: 1.25rem;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 220px; /* Locked height */
    overflow: hidden;
    cursor: pointer;
}

.kyc-card:hover:not(.scanned-success):not(.scanned-error) {
    border-color: var(--auth-primary);
    background: rgba(249, 115, 22, 0.02);
    transform: translateY(-2px);
}

.kyc-card.scanning {
    border-style: solid;
    border-color: var(--auth-primary);
    background: rgba(249, 115, 22, 0.05);
}

.kyc-card.scanned-success {
    border-style: solid;
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.03);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.kyc-card.scanned-error {
    border-style: solid;
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.03);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
}

.kyc-card i {
    font-size: 2.25rem;
    color: var(--auth-slate-400);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.kyc-card.scanned-success i { color: #10b981; }
.kyc-card.scanned-error i { color: #ef4444; }

.kyc-card .card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--auth-slate-800);
    margin-bottom: 0.25rem;
}

.kyc-card .card-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--auth-slate-500);
}

.kyc-tip {
    font-size: 0.7rem;
    color: var(--auth-slate-400);
    margin-top: 0.75rem;
    line-height: 1.4;
    max-width: 180px;
}

/* Elite Status Overlay */
.kyc-status-overlay {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.kyc-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: none;
}

.kyc-card.scanning .kyc-badge.progress { display: block; background: var(--auth-primary); color: white; animation: badgePulse 1.5s infinite; }
.kyc-card.scanned-success .kyc-badge.success { display: block; background: #10b981; color: white; }
.kyc-card.scanned-error .kyc-badge.error { display: block; background: #ef4444; color: white; }

/* Elite Error Drawer (Locked within card) */
.kyc-error-message {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.5rem;
    font-weight: 700;
    display: none;
    animation: slideUpError 0.3s ease forwards;
}

.kyc-card.scanned-error .kyc-error-message {
    display: block;
}

@keyframes slideUpError {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

.face-scan-overlay i {
    font-size: 1.6rem;
    color: var(--auth-primary);
}
/* --- CATERER MODAL CSS IMPORT --- */

    body {
        margin-top: 20px;
    }

    :root {
        --primary: #FF7B54;
        --primary-hover: #E66A45;
        --primary-soft: rgba(255, 123, 84, 0.08);
        --slate-50: #F8FAFC;
        --slate-100: #F1F5F9;
        --slate-200: #E2E8F0;
        --slate-300: #CBD5E1;
        --slate-600: #475569;
        --slate-700: #334155;
        --slate-800: #1E293B;
        --slate-900: #0F172A;
        --elite-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.12);
        --elite-border: rgba(30, 41, 59, 0.05);
    }

    .main-content-wrap {
        padding-top: 100px;
        padding-bottom: 100px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
        background-attachment: fixed;
        position: relative;
    }

    .main-content-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 10% 20%, rgba(255, 123, 84, 0.05) 0%, transparent 40%);
        pointer-events: none;
    }

    .auth-container {
        width: 100%;
        max-width: 750px;
        padding: 1.5rem;
        animation: eliteEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes eliteEntrance {
        from { opacity: 0; transform: translateY(30px) scale(0.98); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .professional-card {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 2rem;
        padding: 3.5rem;
        box-shadow: var(--elite-shadow);
        border: 1px solid var(--elite-border);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .form-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .form-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 2.25rem;
        color: var(--slate-900);
        margin-bottom: 0.5rem;
        letter-spacing: -0.02em;
    }

    .form-header p {
        color: var(--slate-600);
        font-size: 1rem;
        max-width: 450px;
        margin: 0 auto;
        line-height: 1.5;
    }

    /* Progress Steps */
    .progress-container {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3rem;
        position: relative;
        z-index: 1;
    }

    .progress-container::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        height: 2px;
        width: 100%;
        background: var(--slate-100);
        z-index: -1;
    }

    .progress-step {
        width: 40px;
        height: 40px;
        background: #fff;
        border: 2px solid var(--slate-200);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: var(--slate-600);
        transition: all 0.3s ease;
        position: relative;
        background: white;
    }

    .progress-step.active {
        border-color: var(--primary);
        color: var(--primary);
        box-shadow: 0 0 0 4px rgba(153, 204, 102, 0.2);
    }

    .progress-step.completed {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
    }

    .step-label {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0.5rem;
        font-size: 0.75rem;
        font-weight: 600;
        white-space: nowrap;
        color: var(--slate-600);
    }

    .progress-step.active .step-label {
        color: var(--primary);
    }

    /* Form Content */
    .form-step {
        display: none;
        animation: fadeIn 0.4s ease-out;
    }

    .form-step.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateX(10px);
        }

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

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.618rem; /* Golden Ratio Base Spacing */
    }

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

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--slate-700);
        margin-bottom: 0.5rem;
    }

    .minimal-input {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid var(--slate-200);
        border-radius: 0.75rem;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        background: var(--slate-50);
        color: var(--slate-900);
        box-sizing: border-box;
    }

    .minimal-input:focus {
        outline: none;
        border-color: var(--primary);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(153, 204, 102, 0.1);
    }

    .checkbox-group {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.75rem;
        background: var(--slate-50);
        padding: 1.5rem;
        border-radius: 1rem;
        border: 2px solid var(--slate-200);
    }

    .checkbox-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: var(--slate-700);
        cursor: pointer;
    }

    .file-upload-box {
        height: 100px;
        border: 2px dashed var(--slate-200);
        border-radius: 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--slate-50);
        transition: all 0.2s;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        padding: 1rem;
        text-align: center;
    }

    .file-upload-box:hover {
        border-color: var(--primary);
        background: #fff;
    }

    .file-upload-box i {
        font-size: 1.5rem;
        color: var(--slate-600);
        margin-bottom: 0.25rem;
    }

    .file-upload-box p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--slate-600);
    }

    .file-upload-box input {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

    .btn-container {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }

    .btn-nav {
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s;
        border: none;
        flex: 1;
    }

    .btn-next {
        background: linear-gradient(135deg, var(--primary) 0%, #E66A45 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(255, 123, 84, 0.2);
        border: 1px solid transparent;
    }

    .btn-next:hover {
        background: linear-gradient(135deg, #E66A45 0%, #d85b37 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 123, 84, 0.4);
    }

    .btn-prev {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        box-shadow: none;
    }

    .btn-prev:hover {
        background: var(--primary-soft);
        color: #E66A45;
        border-color: #E66A45;
    }

    .logo-preview {
        width: 60px;
        height: 60px;
        border-radius: 0.5rem;
        object-fit: cover;
        display: none;
        margin-bottom: 0.5rem;
    }

    /* Minimal Input Defaults (Aligns with Customer form) */
    .minimal-input {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 1.5px solid var(--slate-200);
        border-radius: 0.75rem;
        background: #ffffff;
        font-size: 0.95rem;
        color: var(--slate-900);
        box-sizing: border-box;
        transition: all 0.2s ease;
    }

    .minimal-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(255, 123, 84, 0.15);
    }

    .password-field-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .password-toggle-btn {
        position: absolute;
        right: 1rem;
        background: none;
        border: none;
        color: var(--slate-400);
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: color 0.2s;
    }
    
    .password-toggle-btn:hover {
        color: var(--primary);
    }

    /* Scanning Animation */
    .file-upload-box.scanning {
        border-color: var(--primary);
        pointer-events: none;
    }
    .file-upload-box.scanning::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary);
        box-shadow: 0 0 15px var(--primary);
        animation: scanLine 1.5s infinite linear;
        z-index: 10;
    }
    @keyframes scanLine {
        0% { top: 0; }
        100% { top: 100%; }
    }
    .file-upload-box.scanned-success {
        border-color: #10b981;
        background: #ecfdf5;
    }
    .file-upload-box.scanned-error {
        border-color: #ef4444;
        background: #fef2f2;
    }
    .scan-status-badge {
        font-size: 0.65rem;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 99px;
        margin-top: 5px;
        display: none;
    }
    .scanned-success .scan-status-badge {
        display: inline-block;
        background: #10b981;
        color: white;
    }
    .scanned-error .scan-status-badge {
        display: inline-block;
        background: #ef4444;
        color: white;
    }
    .ocr-error-text {
        font-size: 0.7rem;
        color: #ef4444;
        margin-top: 4px;
        display: none;
        line-height: 1.2;
    }
    .scanned-error .ocr-error-text {
        display: block;
    }

    /* Face Scan UI Enhancements */
    .face-scan-overlay {
        position: relative;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 123, 84, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
        border: 2px solid rgba(255, 123, 84, 0.2);
    }
    
    .face-scan-overlay i {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .verification-tips-box {
        background: #f0f9ff;
        border: 1px solid #bae6fd;
        border-radius: 0.75rem;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .verification-tips-box h5 {
        color: #0369a1;
        font-size: 0.85rem;
        margin: 0 0 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .verification-tips-box ul {
        margin: 0;
        padding-left: 1.25rem;
        font-size: 0.75rem;
        color: #0c4a6e;
        line-height: 1.5;
    }
    
    .verification-tips-box li {
        margin-bottom: 0.25rem;
    }

    /* Input Validation Icons */
    .input-wrapper .validation-icon {
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        display: none;
        pointer-events: none;
        z-index: 10;
        transition: all 0.2s ease;
    }

    /* Target leading icons specifically to enforce a fixed width and prevent overlapping text */
    .input-wrapper > i.fas:first-child {
        width: 1.25rem;
        text-align: center;
        z-index: 5;
    }

    .input-wrapper.error .validation-icon.error-icon {
        display: block;
        color: #ef4444;
        animation: pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .input-wrapper.success .validation-icon.success-icon {
        display: block;
        color: #10b981;
        animation: pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    @keyframes pop {
        0% { transform: translateY(-50%) scale(0.5); opacity: 0; }
        100% { transform: translateY(-50%) scale(1); opacity: 1; }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .professional-card {
            padding: 2rem 1.5rem;
            border-radius: 1rem;
        }

        .form-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .form-header h2 {
            font-size: 1.75rem;
        }

        .progress-container {
            margin-bottom: 2.5rem;
        }

        .step-label {
            display: none; /* Hide labels on mobile to prevent overlap */
        }

        .btn-container {
            flex-direction: column-reverse;
        }

        .btn-nav {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .main-content-wrap {
            padding-top: 80px;
            padding-bottom: 60px;
        }

        .form-header h2 {
            font-size: 1.5rem;
        }

        .progress-step {
            width: 32px;
            height: 32px;
            font-size: 0.85rem;
        }
        
        .file-upload-box {
            height: 120px;
        }
    }
    /* ===================================================
       ELITE KYC GRID & CARDS (Rock-Solid Stability)
       =================================================== */
    .kyc-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .kyc-card {
        background: #ffffff;
        border: 2px dashed var(--slate-200);
        border-radius: 1.25rem;
        padding: 1.75rem;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 240px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .kyc-card:hover:not(.scanned-success):not(.scanned-error) {
        border-color: var(--primary);
        background: rgba(255, 123, 84, 0.02);
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .kyc-card.scanning {
        border-style: solid;
        border-color: var(--primary);
        background: rgba(255, 123, 84, 0.05);
    }

    .kyc-card.scanned-success {
        border-style: solid;
        border-color: #10b981;
        background: rgba(16, 185, 129, 0.02);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
    }

    .kyc-card.scanned-error {
        border-style: solid;
        border-color: #ef4444;
        background: rgba(239, 68, 68, 0.02);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
    }

    .kyc-card i {
        font-size: 2.5rem;
        color: var(--slate-400);
        margin-bottom: 1rem;
        transition: all 0.3s;
    }

    .kyc-card.scanned-success i { color: #10b981; }
    .kyc-card.scanned-error i { color: #ef4444; }

    .kyc-card .card-title {
        font-size: 1rem;
        font-weight: 800;
        color: var(--slate-800);
        margin-bottom: 0.25rem;
    }

    .kyc-card .card-status {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--slate-500);
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .kyc-tip {
        font-size: 0.7rem;
        color: var(--slate-400);
        margin-top: 1rem;
        line-height: 1.4;
        max-width: 190px;
    }

    /* Elite Status Overlay */
    .kyc-status-overlay {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .kyc-badge {
        padding: 0.35rem 0.75rem;
        border-radius: 2rem;
        font-size: 0.65rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .kyc-card.scanning .kyc-badge.progress { display: block; background: var(--primary); color: white; animation: badgePulse 1.5s infinite; }
    .kyc-card.scanned-success .kyc-badge.success { display: block; background: #10b981; color: white; }
    .kyc-card.scanned-error .kyc-badge.error { display: block; background: #ef4444; color: white; }

    @keyframes badgePulse {
        0% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.05); }
        100% { opacity: 1; transform: scale(1); }
    }

    /* Elite Error Drawer */
    .kyc-error-message {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ef4444;
        color: white;
        font-size: 0.7rem;
        padding: 0.75rem;
        font-weight: 700;
        display: none;
        animation: slideUpError 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        z-index: 20;
    }

    .kyc-card.scanned-error .kyc-error-message {
        display: block;
    }

    @keyframes slideUpError {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }

    /* Scanning Animation Line */
    .kyc-card.scanning::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        animation: kycScanAnimation 2s infinite linear;
        box-shadow: 0 0 10px var(--primary);
    }

    @keyframes kycScanAnimation {
        0% { top: 0; }
        100% { top: 100%; }
    }

    /* Mobile KYC Grid */
    @media (max-width: 600px) {
        .kyc-grid {
            grid-template-columns: 1fr;
        }
        .kyc-card {
            min-height: 200px;
        }
    }
    /* Elite Input Icons */
    .input-wrapper i.fas {
        transition: color 0.3s ease;
    }

    .input-wrapper:focus-within i.fas {
        color: var(--primary);
    }

    /* Modern Checkbox Tiles */
    .hidden-check {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkbox-tile .tile-content {
        cursor: pointer;
        background: var(--slate-50);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .checkbox-tile.selected .tile-content {
        background: var(--primary-soft);
        border-color: var(--primary) !important;
        box-shadow: 0 0 0 4px rgba(255, 123, 84, 0.1);
        transform: translateY(-2px);
    }

    .checkbox-tile.selected .tile-content div {
        color: var(--primary) !important;
    }

    /* Elite Progress Tracker Enhancements */
    .progress-container {
        padding: 0 1rem;
    }

    .progress-step {
        z-index: 10;
        cursor: default;
    }

    .progress-step.completed {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
        box-shadow: 0 4px 10px rgba(255, 123, 84, 0.2);
    }

    /* Step Fade-In Animation */
    .form-step {
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease-out;
    }

    .form-step.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive Grid Patch */
    @media (max-width: 768px) {
        .professional-card {
            padding: 2.5rem 1.5rem;
        }
        
        .form-grid {
            grid-template-columns: 1fr;
        }
    }

/* Guided Scanner Instructions */
.scanner-instruction-banner {
    background: var(--auth-primary);
    color: white;
    padding: 0.85rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    animation: slideDownInstr 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 100;
    letter-spacing: -0.01em;
}

.scanner-instruction-banner.active {
    animation: pulseInstr 1.5s infinite;
}

@keyframes slideDownInstr {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseInstr {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); background: #ea580c; }
    100% { transform: scale(1); }
}

.scanner-modal-wrap {
    padding: 0.5rem;
}

.scanner-preview-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: #000;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid var(--auth-slate-200);
}

#modalWebcamVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scanner-laser {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to bottom, transparent, var(--auth-primary), transparent);
    box-shadow: 0 0 15px var(--auth-primary);
    animation: laserScan 2.5s infinite linear;
    z-index: 10;
}

@keyframes laserScan {
    0% { top: 10%; }
    50% { top: 85%; }
    100% { top: 10%; }
}

.scanner-guide-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 11;
}

.scanner-guide-frame.id, .scanner-guide-frame.permit {
    width: 80%;
    height: 60%;
    border-radius: 1rem;
}

.scanner-guide-frame.selfie {
    width: 65%;
    height: 75%;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.4);
}

.scanner-hint {
    margin-top: 1.25rem;
    color: var(--auth-slate-600);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* =====================================================
   MOBILE & TABLET RESPONSIVE FIXES — AUTH MODALS
   Applies to: Customer Signup, Caterer Signup, Login
   ===================================================== */

/* --- TABLET (601px – 900px) --- */
@media (max-width: 900px) {
    .auth-modal-overlay {
        padding: 1rem !important;
        align-items: center !important;
    }

    .auth-modal-container {
        max-width: 96vw !important;
        width: 100% !important;
        max-height: 94vh !important;
        margin: 0 auto !important;
    }

    .auth-modal-container.wide {
        max-width: 96vw !important;
    }

    .auth-modal-content {
        max-height: 92vh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    /* Caterer card padding tightened for tablet */
    .auth-modal-content .professional-card {
        padding: 2.25rem 1.75rem !important;
    }

    .form-header h2 {
        font-size: 1.75rem !important;
    }

    /* Collapse 2-col grids to 1-col on tablet */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }

    .form-group.full-width {
        grid-column: span 1 !important;
    }
}

/* --- MOBILE (max 600px) --- */
@media (max-width: 600px) {
    .auth-modal-overlay {
        padding: 1rem 0 !important;
        align-items: flex-start !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .auth-modal-container {
        width: 95% !important;
        height: auto !important;
        max-width: 95% !important;
        max-height: none !important;
        margin: 1rem auto !important;
        border-radius: 1.25rem !important;
        transform: scale(0.95) translateY(20px) !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
    }

    .auth-modal-container.wide {
        max-width: 95% !important;
    }

    .auth-modal-overlay.active .auth-modal-container {
        transform: scale(1) translateY(0) !important;
    }

    .auth-modal-content {
        height: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
        border-radius: 1.25rem !important;
    }

    .auth-modal-content .professional-card {
        padding: 3.5rem 1.25rem 2.5rem !important;
        border-radius: 0 !important;
        overflow: visible !important;
        height: auto !important;
    }

    .auth-modal-close {
        top: 1rem !important;
        right: 1rem !important;
        z-index: 10010 !important;
        background: rgba(255,255,255,0.95) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
    }
    }
}

    /* Progress steps — hide text labels, shrink circles */
    .progress-step .step-label {
        display: none !important;
    }

    .progress-container {
        margin-bottom: 1.5rem !important;
        padding: 0 0.25rem !important;
    }

    .progress-step {
        width: 2rem !important;
        height: 2rem !important;
        font-size: 0.78rem !important;
    }

    /* Form header tighter */
    .form-header {
        margin-bottom: 1.5rem !important;
    }

    .form-header h2,
    .auth-modal-content h2.auth-title {
        font-size: 1.35rem !important;
        margin-bottom: 0.2rem !important;
    }

    .form-header p,
    .auth-modal-content .auth-subtitle {
        font-size: 0.82rem !important;
        margin-bottom: 1rem !important;
    }

    /* Collapse all grids to single column */
    .form-grid,
    #catererForm .form-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .form-group.full-width {
        grid-column: span 1 !important;
    }

    /* Input fields — touch-friendly height */
    .auth-modal-content .minimal-input,
    .minimal-input {
        padding: 0.8rem 1rem !important;
        font-size: 1rem !important;  /* prevents iOS zoom on focus */
        border-radius: 0.65rem !important;
    }

    /* Button row stacked on mobile */
    .btn-container {
        flex-direction: column-reverse !important;
        gap: 0.65rem !important;
        margin-top: 1.25rem !important;
        padding-top: 1rem !important;
    }

    .btn-container .btn-primary,
    .btn-container .btn-secondary,
    .btn-nav {
        width: 100% !important;
        min-width: unset !important;
        padding: 0.9rem 1rem !important;
        font-size: 0.95rem !important;
    }

    /* Primary action button always full-width */
    .btn-primary-action,
    .btn-luxury-submit {
        font-size: 0.95rem !important;
        min-height: 3rem !important;
    }

    /* Checkbox chips wrap nicely */
    .checkbox-group {
        gap: 0.5rem !important;
    }

    .checkbox-item {
        padding: 0.5rem 0.85rem !important;
        font-size: 0.8rem !important;
    }

    /* File upload boxes shorter on mobile */
    .file-upload-box {
        min-height: 90px !important;
        padding: 1rem 0.75rem !important;
    }

    /* KYC grid single column */
    .kyc-grid {
        grid-template-columns: 1fr !important;
    }

    .kyc-card {
        min-height: 160px !important;
        padding: 1.25rem !important;
    }

    /* Auth footer text smaller */
    .auth-modal-content .auth-footer {
        font-size: 0.82rem !important;
        padding-top: 1rem !important;
    }

    /* Safe area padding at bottom for iPhone home indicator */
    .auth-modal-content .professional-card:last-child {
        padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px)) !important;
    }
}

/* --- VERY SMALL PHONES (max 360px) --- */
@media (max-width: 360px) {
    .auth-modal-content .professional-card {
        padding: 4rem 1rem 2rem !important;
    }

    .form-header h2,
    .auth-modal-content h2.auth-title {
        font-size: 1.2rem !important;
    }

    .minimal-input {
        font-size: 0.9rem !important;
    }
}

