/* =====================================================
   TT Platform - Premium Login Design
   Modern Purple Theme with Advanced Animations
   ===================================================== */

/* =====================================================
   CSS Variables - Purple Theme
   ===================================================== */
:root {
    --purple-50: #E8E8FF;
    --purple-100: #D6D6FF;
    --purple-200: #ADADFF;
    --purple-300: #8585FF;
    --purple-400: #5C5CE8;
    --purple-500: #2F2FB7;
    --purple-600: #2626A3;
    --purple-700: #1E1E86;
    --purple-800: #161669;
    --purple-900: #0E0E4D;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --white: #ffffff;
    --black: #000000;
}

/* =====================================================
   Reset & Base Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =====================================================
   Main Container
   ===================================================== */
.login-container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0E0E4D 0%, #1E1E86 50%, #2F2FB7 100%);
}

/* =====================================================
   Animated Background Layers
   ===================================================== */
.bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(47, 47, 183, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(38, 38, 163, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 40% 90%, rgba(30, 30, 134, 0.3) 0%, transparent 50%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(14, 14, 77, 0.3) 0%,
        rgba(22, 22, 105, 0.2) 25%,
        rgba(38, 38, 163, 0.2) 50%,
        rgba(47, 47, 183, 0.3) 100%);
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.8; transform: rotate(0deg) scale(1); }
    50% { opacity: 1; transform: rotate(180deg) scale(1.1); }
}

/* =====================================================
   Floating Particles
   ===================================================== */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 19s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 21s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 20s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 18s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 23s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3.5s; animation-duration: 19s; }
.particle:nth-child(11) { left: 25%; animation-delay: 0.5s; animation-duration: 21s; }
.particle:nth-child(12) { left: 35%; animation-delay: 2.3s; animation-duration: 20s; }
.particle:nth-child(13) { left: 45%; animation-delay: 4.2s; animation-duration: 18s; }
.particle:nth-child(14) { left: 55%; animation-delay: 1.8s; animation-duration: 22s; }
.particle:nth-child(15) { left: 65%; animation-delay: 3.2s; animation-duration: 19s; }
.particle:nth-child(16) { left: 75%; animation-delay: 0.8s; animation-duration: 21s; }
.particle:nth-child(17) { left: 85%; animation-delay: 2.8s; animation-duration: 20s; }
.particle:nth-child(18) { left: 95%; animation-delay: 4.8s; animation-duration: 18s; }
.particle:nth-child(19) { left: 12%; animation-delay: 1.2s; animation-duration: 23s; }
.particle:nth-child(20) { left: 88%; animation-delay: 3.8s; animation-duration: 19s; }

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* =====================================================
   Grid Pattern Overlay
   ===================================================== */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* =====================================================
   Content Wrapper
   ===================================================== */
.content-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* =====================================================
   Branding Panel (Left Side)
   ===================================================== */
.branding-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.branding-content {
    max-width: 520px;
    width: 100%;
}

/* =====================================================
   Logo Animation
   ===================================================== */
.logo-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 2.5rem;
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(47, 47, 183, 0.4), transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.logo-main {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-svg {
    width: 100px;
    height: 100px;
}

/* =====================================================
   Company Logo in Login Panel
   ===================================================== */
.company-logo-login {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    position: relative;
}

.company-logo-login::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(47, 47, 183, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: logoGlowLogin 3s ease-in-out infinite;
}

@keyframes logoGlowLogin {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.company-logo-img-login {
    width: 100%;
    height: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(47, 47, 183, 0.25));
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(47, 47, 183, 0.03), rgba(38, 38, 163, 0.03));
    border-radius: 20px;
    border: 2px solid rgba(47, 47, 183, 0.1);
    transition: all 0.3s ease;
}

.company-logo-img-login:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 24px rgba(47, 47, 183, 0.35));
    border-color: rgba(47, 47, 183, 0.2);
}

.logo-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawPath 3s ease-out forwards, pathPulse 2s ease-in-out 3s infinite;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pathPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.logo-dot,
.logo-point {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.logo-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 1.5s ease-out 1s forwards;
}

.logo-line:nth-child(3) { animation-delay: 1.2s; }
.logo-line:nth-child(4) { animation-delay: 1.4s; }

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* =====================================================
   Brand Title
   ===================================================== */
.brand-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.brand-tt {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-300), var(--purple-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(47, 47, 183, 0.5));
}

.brand-platform {
    display: inline-block;
    margin-left: 0.5rem;
}

.brand-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

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

/* =====================================================
   Features List
   ===================================================== */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.7s; }
.feature-card:nth-child(2) { animation-delay: 0.9s; }
.feature-card:nth-child(3) { animation-delay: 1.1s; }

.feature-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(47, 47, 183, 0.3), rgba(38, 38, 163, 0.3));
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(47, 47, 183, 0.5), rgba(38, 38, 163, 0.5));
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.feature-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* =====================================================
   Stats Grid
   ===================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 1.3s backwards;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-200), var(--purple-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* =====================================================
   Form Panel (Right Side)
   ===================================================== */
.form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out;
}

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

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

/* =====================================================
   Form Header
   ===================================================== */
.form-header {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-description {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* =====================================================
   Login Form
   ===================================================== */
.login-form {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* =====================================================
   Input Groups
   ===================================================== */
.input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.625rem;
    transition: color 0.3s ease;
}

.input-group.focused .input-label {
    color: var(--purple-600);
}

.input-container {
    position: relative;
    display: block;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.input-group.focused .input-icon {
    color: var(--purple-600);
}

.input-field {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    font-size: 0.9375rem;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-sizing: border-box;
    display: block;
}

.input-field::placeholder {
    color: var(--gray-400);
}

.input-field:hover {
    border-color: var(--gray-300);
    background: var(--white);
}

.input-field:focus {
    border-color: var(--purple-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(47, 47, 183, 0.1);
    transform: translateY(-2px);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-400);
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--purple-600);
    transform: translateY(-50%) scale(1.1);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

/* =====================================================
   Validation Messages
   ===================================================== */
.input-error {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #ef4444;
    font-weight: 500;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* =====================================================
   Error Message
   ===================================================== */
.error-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    animation: shake 0.4s ease;
}

.error-message svg {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
}

.error-message span {
    font-size: 0.875rem;
    color: #dc2626;
    font-weight: 500;
}

/* =====================================================
   Form Options
   ===================================================== */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--purple-600);
    transition: all 0.2s ease;
}

.checkbox-input:hover {
    transform: scale(1.1);
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
}

.link-forgot {
    font-size: 0.875rem;
    color: var(--purple-600);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.link-forgot::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-700));
    transition: width 0.3s ease;
}

.link-forgot:hover::after {
    width: 100%;
}

.link-forgot:hover {
    color: var(--purple-700);
}

/* =====================================================
   Submit Button
   ===================================================== */
.btn-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(47, 47, 183, 0.3);
    margin-bottom: 1.5rem;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(47, 47, 183, 0.4);
}

.btn-submit:active:not(:disabled) {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit:hover:not(:disabled) .btn-icon {
    transform: translateX(4px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover:not(:disabled) .btn-shine {
    left: 100%;
}

/* =====================================================
   Loading Spinner
   ===================================================== */
.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =====================================================
   Divider
   ===================================================== */
.divider {
    position: relative;
    text-align: center;
    margin-bottom: 1.5rem;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 70px);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-300));
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
    background: linear-gradient(to left, transparent, var(--gray-300));
}

.divider span {
    display: inline-block;
    padding: 0 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
    background: var(--white);
}

/* =====================================================
   Social Login Buttons
   ===================================================== */
.social-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-social {
    padding: 0.875rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-600);
}

.btn-social:hover {
    border-color: var(--purple-300);
    background: var(--purple-50);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(47, 47, 183, 0.15);
}

.btn-social svg {
    width: 22px;
    height: 22px;
}

/* =====================================================
   Form Footer
   ===================================================== */
.form-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.form-footer p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.link-signup {
    color: var(--purple-600);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.link-signup::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-700));
    transition: width 0.3s ease;
}

.link-signup:hover::after {
    width: 100%;
}

.link-signup:hover {
    color: var(--purple-700);
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1280px) {
    .brand-title {
        font-size: 3rem;
    }

    .feature-card {
        padding: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .branding-panel {
        display: none;
    }

    .form-panel {
        box-shadow: none;
    }
}

@media (max-width: 640px) {
    .form-panel {
        padding: 2rem 1.5rem;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .form-description {
        font-size: 0.9375rem;
    }

    .input-field {
        padding: 0.875rem 1rem 0.875rem 3rem;
        font-size: 0.875rem;
    }

    .btn-submit {
        padding: 1rem 1.5rem;
    }

    .social-buttons {
        gap: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* =====================================================
   Accessibility
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Keyboard Navigation */
.btn-submit:focus-visible,
.input-field:focus-visible,
.link-forgot:focus-visible,
.link-signup:focus-visible,
.btn-social:focus-visible {
    outline: 3px solid var(--purple-400);
    outline-offset: 3px;
}
