        :root {
            --primary: #0A2558;
            --primary-light: #1a3a6b;
            --secondary: #0066cc;
            --success: #22c55e;
            --error: #ef4444;
            --warning: #f59e0b;
            --bg-dark: #1a1a2e;
            --text-light: #ffffff;
            --border-color: rgba(255, 255, 255, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #1a1a2e;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            width: 100%;
            max-width: 500px;
        }

        .card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            }

        .logo {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo img {
            max-width: 180px;
            height: auto;
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
        }

        .header h1 {
            color: var(--text-light);
            font-size: 28px;
            margin-bottom: 10px;
            font-weight: 500;
            text-transform: uppercase;
        }

        .header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        /* Recovery Type Selection */
        .recovery-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .recovery-option {
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid transparent;
            border-radius: 12px;
            padding: 20px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .recovery-option:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .recovery-option.active {
            background: rgba(0, 102, 204, 0.2);
            border-color: var(--secondary);
        }

        .recovery-option i {
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .recovery-option span {
            display: block;
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
        }

        /* Form Sections */
        .form-section {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .form-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .input-group {
            margin-bottom: 20px;
        }

        .input-group label {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .input-wrapper {
            position: relative;
        }

        .input-wrapper i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.5);
            font-size: 16px;
            pointer-events: none; /* Default icons shouldn't block clicks */
        }

        .input-wrapper i.toggle-pw {
            left: auto;
            right: 15px;
            cursor: pointer;
            pointer-events: auto; /* Enable clicks for the toggle icon */
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.3s ease;
        }

        .input-wrapper i.toggle-pw:hover {
            color: var(--text-light);
        }

        input[type="text"],
        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 14px 15px 14px 45px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 15px;
            transition: all 0.3s ease;
        }

        input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--secondary);
        }

        input:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* OTP Input Boxes */
        .otp-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }

        .otp-input {
            width: 50px !important;
            height: 55px !important;
            text-align: center;
            font-size: 24px !important;
            font-weight: bold;
            padding: 0 !important;
            background: rgba(255, 255, 255, 0.1) !important;
            border: 2px solid var(--border-color) !important;
            border-radius: 10px;
            color: var(--text-light) !important;
            transition: all 0.3s ease !important;
        }

        .otp-input:focus {
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.05);
        }

        .otp-input.filled {
            border-color: var(--success) !important;
            background: rgba(34, 197, 94, 0.1) !important;
        }

        /* Timer */
        .otp-timer {
            text-align: center;
            margin-top: 15px;
            color: var(--warning);
            font-size: 13px;
            font-weight: 500;
        }

        .otp-timer.expired {
            color: var(--error);
        }

        /* Buttons */
        .btn {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-primary {
            background: var(--secondary);
            color: white;
            margin-top: 10px;
        }

        .btn-primary:hover:not(:disabled) {
            background: #0052a3;

            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
        }

        .btn-primary:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            margin-top: 15px;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* Progress Steps */
        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }

        .progress-steps::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 25%;
            right: 25%;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 0;
        }

        .progress-line {
            position: absolute;
            top: 20px;
            left: 25%;
            height: 2px;
            background: var(--secondary);
            transition: width 0.5s ease;
            z-index: 1;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .step.active .step-circle {
            background: var(--secondary);
            border-color: var(--secondary);
            color: white;
            transform: scale(1.1);
        }

        .step.completed .step-circle {
            background: var(--success);
            border-color: var(--success);
            color: white;
        }

        .step-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }

        .step.active .step-label {
            color: var(--text-light);
            font-weight: 600;
        }

        /* Footer Links */
        .footer-links {
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .footer-links a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 14px;
            margin: 0 10px;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 576px) {
            .card {
                padding: 30px 20px;
            }

            .recovery-options {
                grid-template-columns: 1fr;
            }

            .otp-input {
                width: 45px;
                height: 50px;
                font-size: 20px;
            }

            .header h1 {
                font-size: 24px;
            }
        }

        /* SweetAlert2 Custom Styling */
        .swal2-popup {
            background: rgba(26, 26, 46, 0.98) !important;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .swal2-title {
            color: var(--text-light) !important;
        }

        .swal2-html-container {
            color: rgba(255, 255, 255, 0.8) !important;
        }

        .swal2-confirm {
            background: var(--secondary) !important;
        }