@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --navy: #0F172A;
    --navy-light: #1E293B;
    --bg-slate: #F8FAFC;
    --success: #22C55E;
    --success-soft: rgba(34, 197, 94, 0.1);
    --warning: #F59E0B;
    --danger: #EF4444;
    --danger-soft: rgba(239, 68, 68, 0.1);
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-premium: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.03);
    --shadow-premium-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 1px 5px rgba(15, 23, 42, 0.05);
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh !important;
    background-color: var(--bg-slate) !important;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
}

.signin-section,
.register-section {
    display: block;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents child margins from collapsing and causing white gaps */
    background-color: var(--bg-slate);
}

/* Container Split Layout */
.signin-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signin-container.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    max-width: 100%;
    margin: 0;
    align-items: stretch; /* Prevents vertical centering gaps on different column heights */
}

/* Left Side - Brand Panel */
.signin-left {
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%), 
                radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    background-size: auto, auto, 50px 50px, 50px 50px, auto;
    padding: 4.5rem 4rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.signin-branding {
    max-width: 540px;
    z-index: 2;
}

.signin-branding .logo-container {
    margin-bottom: 2rem;
}

.signin-branding .logo-container img {
    height: 48px;
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94A3B8;
    line-height: 1.2;
    margin-top: 1px;
}

.signin-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.brand-name {
    color: #60A5FA;
    font-weight: 800;
}

.brand-subtitle {
    font-size: 1.05rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Secure Tax Filing Badge */
.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.secure-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #60A5FA;
    letter-spacing: 0.05em;
}

.blink-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10B981; /* green indicator */
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Vertical Premium Stepper Visual */
.workflow-timeline {
    position: relative;
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 0.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 18px;
    bottom: -1.5rem;
    width: 2px;
    background: rgba(148, 163, 184, 0.15);
    z-index: 1;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #475569;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #94A3B8;
    transition: color 0.3s ease;
}

/* Timeline Stepper States */
.timeline-item.completed .timeline-dot {
    border-color: var(--success);
    background: var(--success);
}

.timeline-item.completed .timeline-dot::after {
    background: #ffffff;
}

.timeline-item.completed::before {
    background: var(--success);
}

.timeline-item.active .timeline-dot {
    border-color: var(--primary);
    background: var(--navy);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
    animation: activePulse 2s infinite;
}

.timeline-item.active .timeline-dot::after {
    background: var(--primary);
}

@keyframes activePulse {
    0% {
        box-shadow: 0 0 0 0px rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(37, 99, 235, 0);
    }
}

.timeline-item.active .timeline-text {
    color: #ffffff;
    font-weight: 600;
}

.timeline-item.completed .timeline-text {
    color: #E2E8F0;
}

/* Trust Badges Section */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    z-index: 2;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    color: #E2E8F0;
    font-weight: 500;
    transition: all 0.2s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.trust-badge i {
    color: #60A5FA;
}

/* Premium Security Card */
.security-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    z-index: 2;
}

.security-card i {
    color: var(--success);
    font-size: 1.25rem;
    margin-top: 2px;
}

.security-card p {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.5;
    margin: 0;
}

/* Right Side - Form Container */
.signin-right {
    background-color: var(--bg-slate);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.signin-form-container {
    width: 100%;
    max-width: 480px;
}

.signin-form-container .logo-container {
    display: none; /* Hidden on desktop layout, logo is in left panel */
}

/* Premium Auth Card */
.auth-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium-lg);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    width: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover {
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
}

.form-header {
    margin-bottom: 2.25rem;
    text-align: left;
}

.form-header h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.signin-form {
    width: 100%;
}

/* Input Fields and Layout */
.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #94A3B8;
    pointer-events: none;
    z-index: 2;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon i {
    font-size: 1.1rem;
}

.input-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: left;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--navy);
    background-color: #ffffff;
    transition: all 0.2s ease;
    outline: none;
    font-family: var(--font);
    box-sizing: border-box;
}

.input-icon ~ input,
.input-icon ~ select {
    padding-left: 2.75rem;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-group input::placeholder {
    color: #94A3B8;
}

/* Password Toggle Icon */
.password-toggle {
    position: absolute;
    right: 1rem;
    color: #94A3B8;
    cursor: pointer;
    z-index: 2;
    padding: 0.25rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--primary);
}

/* Dropdown Arrow Styling override */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    cursor: pointer;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
}

/* Form Options (Remember me & forgot password) */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

.remember-me label {
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.forgot-password,
.auth-link {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover,
.auth-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Primary Action Submit Button */
.btn-signin-submit,
.btn-signup,
.btn-submit,
.btn-signin {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.18), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-signin-submit:hover,
.btn-signup:hover,
.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.25), 0 4px 6px -2px rgba(37, 99, 235, 0.15);
}

.btn-signin-submit:active,
.btn-signup:active,
.btn-submit:active {
    transform: translateY(0);
}

.btn-signin-submit:disabled,
.btn-signup:disabled,
.btn-submit:disabled {
    background: #cbd5e1;
    color: #94A3B8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Links & Navigational Helpers */
.alternative-login,
.signup-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.btn-otp-redirect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    margin-bottom: 1rem;
}

.btn-otp-redirect:hover {
    background: var(--bg-slate);
    border-color: #cbd5e1;
    color: var(--primary);
}

.btn-otp-redirect i {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.alternative-login p,
.signup-link p {
    margin-bottom: 0.5rem;
}

.alternative-login p:last-child,
.signup-link p:last-child {
    margin-bottom: 0;
}

/* Micro-interactive Toast notification container */
#signinToastContainer {
    pointer-events: none;
}

/* Custom Accessibility & Helper classes */
.hidden-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* OTP Section visibility toggling */
.otp-section {
    display: none;
}

.otp-section.active {
    display: block;
}

/* OTP 6-Digit Field Styling */
.otp-digits-container {
    display: flex;
    gap: 0.65rem;
    justify-content: space-between;
    margin: 1.75rem 0;
    direction: ltr;
}

.otp-digit-field {
    width: 52px;
    height: 58px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    border: 2px solid #cbd5e1;
    border-radius: var(--radius-md);
    background-color: #f8fafc;
    color: var(--navy);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.otp-digit-field:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    transform: scale(1.05);
}

/* Error/Success Alert Box styling override */
.error-message,
.success-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 1.25rem 0;
    display: none;
    align-items: flex-start;
    gap: 0.75rem;
}

.error-message.show,
.success-message.show {
    display: flex;
}

.error-message {
    background-color: var(--danger-soft);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #B91C1C;
}

.error-message i {
    color: var(--danger);
    font-size: 1.1rem;
    margin-top: 2px;
}

.success-message {
    background-color: var(--success-soft);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #15803D;
}

.success-message i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 2px;
}

.card-security-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1.75rem;
    text-align: left;
}

.card-security-banner i {
    color: var(--success);
    font-size: 1.15rem;
    margin-top: 1px;
}

.card-security-banner p {
    font-size: 0.8rem;
    color: #15803D; /* darker green for text readability */
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Loading Spinner state and animation */
.loading-spinner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.loading-spinner.show {
    display: flex;
}

.spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* OTP Specific Help Cards & Info display */
.otp-help {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: #1E40AF;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.otp-help i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 1px;
}

.email-display {
    background: var(--bg-slate);
    border: 1px solid var(--border-color);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.email-display strong {
    color: var(--navy);
    font-weight: 600;
}

.resend-section {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-slate);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.resend-otp button {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
    text-decoration: underline;
    outline: none;
}

.resend-otp button:hover:not(:disabled) {
    color: var(--primary-hover);
    text-decoration: none;
}

.resend-otp button:disabled {
    color: var(--text-muted);
    cursor: not-allowed;
    text-decoration: none;
}

.timer {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.back-to-email {
    text-align: center;
    margin-top: 1.25rem;
}

.back-to-email button {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    outline: none;
}

.back-to-email button:hover {
    background-color: var(--bg-slate);
    color: var(--text-dark);
    border-color: #94A3B8;
}

/* Fallback centered login card (E.g. forgot-password, reset-password pages) */
.signin-container:not(.split-layout) {
    background-color: var(--bg-slate);
    padding: 2rem 1rem;
    min-height: 100vh;
}

.signin-container:not(.split-layout) .signin-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium-lg);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.signin-container:not(.split-layout) .signin-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signin-container:not(.split-layout) .signin-header .logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.signin-container:not(.split-layout) .signin-header .logo img {
    height: 50px;
    width: auto;
}

.signin-container:not(.split-layout) .signin-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.signin-container:not(.split-layout) .signin-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.signin-container:not(.split-layout) .signin-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ====================================================
   RESPONSIVE LAYOUT OVERRIDES
   ==================================================== */

/* Tablet Portrait & Landscape - 768px to 1023px */
@media (max-width: 1023px) {
    .signin-container.split-layout {
        grid-template-columns: 1fr;
    }
    
    .signin-left {
        min-height: auto;
        padding: 3rem 2.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .signin-branding {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .brand-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .workflow-timeline {
        display: none; /* Hide complex timeline on tablet vertical */
    }
    
    .trust-badges {
        justify-content: center;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .security-card {
        display: none; /* Hide security note on smaller viewport panels */
    }
    
    .signin-right {
        min-height: auto;
        padding: 3rem 2.5rem 4rem;
    }
}

/* Mobile Devices - under 768px */
@media (max-width: 767px) {
    .signin-left {
        padding: 2.5rem 1.5rem;
    }
    
    .signin-title {
        font-size: 1.75rem;
    }
    
    .brand-subtitle {
        font-size: 0.95rem;
    }
    
    .trust-badges {
        gap: 0.5rem;
    }
    
    .trust-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .signin-right {
        padding: 2rem 1rem 3rem;
    }
    
    .auth-card {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-md);
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .input-icon i {
        font-size: 1rem;
    }
    
    .btn-signin-submit,
    .btn-signup,
    .btn-submit {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .otp-digit-field {
        width: 44px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .signin-container:not(.split-layout) .signin-card {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-md);
    }
}