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

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f5f9ff 0%, #e8f0fe 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            line-height: 1.6;
        }

        .forgot-password-container {
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
        }

        .forgot-password-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo {
            width: 180px;
            margin-bottom: 20px;
        }

        .forgot-password-header h1 {
            font-size: 28px;
            font-weight: 600;
            color: #2C5AA0;
            margin-bottom: 10px;
        }

        .forgot-password-header p {
            color: #666;
            font-size: 16px;
            font-weight: 400;
        }

        .forgot-password-card {
            background: white;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
        }

        .forgot-password-form {
            margin-bottom: 20px;
        }

        .input-group {
            margin-bottom: 20px;
        }

        .input-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #444;
            margin-bottom: 8px;
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon i:first-of-type {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #9e9e9e;
            font-size: 16px;
        }

        .input-with-icon input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .input-with-icon input:focus {
            outline: none;
            border-color: #2C5AA0;
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

        .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #9e9e9e;
        }

        .verification-code-group {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
            margin-bottom: 20px;
        }

        .verification-input {
            width: 100%;
            text-align: center;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
            aspect-ratio: 1;
        }

        .verification-input:focus {
            outline: none;
            border-color: #2C5AA0;
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

        .resend-code {
            text-align: center;
            margin-bottom: 25px;
        }

        .resend-code a {
            color: #2C5AA0;
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
        }

        .resend-code a:hover {
            text-decoration: underline;
        }

        .resend-code a.disabled {
            color: #999;
            cursor: not-allowed;
        }

        .resend-code a.disabled:hover {
            text-decoration: none;
        }

        .reset-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #2C5AA0 0%, #1E3A68 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 25px;
        }

        .reset-btn:hover {
            background: linear-gradient(135deg, #1E3A68 0%, #2C5AA0 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.2);
        }

        .reset-btn:disabled {
            background: #cccccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .back-to-login {
            text-align: center;
            font-size: 15px;
            color: #666;
        }

        .back-to-login a {
            color: #2C5AA0;
            font-weight: 600;
            text-decoration: none;
        }

        .back-to-login a:hover {
            text-decoration: underline;
        }

        .forgot-password-footer {
            text-align: center;
        }

        .forgot-password-footer p {
            font-size: 13px;
            color: #999;
        }

        .forgot-password-footer a {
            color: #666;
            text-decoration: none;
        }

        .forgot-password-footer a:hover {
            text-decoration: underline;
        }

        .error-message {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 5px;
            display: block;
        }

        .success-message {
            color: #27ae60;
            font-size: 14px;
            margin-top: 5px;
            display: block;
        }

        .alert {
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .alert-info {
            background-color: #d1ecf1;
            color: #0c5460;
            border: 1px solid #bee5eb;
        }

        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .step {
            display: flex;
            align-items: center;
            margin: 0 10px;
        }

        .step-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #ddd;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 8px;
        }

        .step.active .step-circle {
            background: #2C5AA0;
        }

        .step.completed .step-circle {
            background: #27ae60;
        }

        .step-text {
            font-size: 14px;
            color: #666;
        }

        .step.active .step-text {
            color: #2C5AA0;
            font-weight: 600;
        }

        .step-line {
            width: 40px;
            height: 2px;
            background: #ddd;
            margin: 0 5px;
        }

        .step.active ~ .step-line {
            background: #2C5AA0;
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .forgot-password-card {
                padding: 25px;
            }
            
            .verification-code-group {
                gap: 6px;
            }
            
            .verification-input {
                padding: 10px;
                font-size: 14px;
            }
            
            .step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-circle {
                margin-right: 0;
                margin-bottom: 5px;
            }
            
            .step-line {
                width: 20px;
            }
        }

        @media (max-width: 360px) {
            .verification-code-group {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            
            .verification-input {
                aspect-ratio: unset;
                height: 50px;
            }
        }