* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html,
        body {
            height: 100%;
            width: 100%;
            overflow: hidden;
        }

        body {
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
        }

        .forgot-container {
            width: 100%;
            max-width: 400px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        .forgot-header {
            background: #3A4ED5;
            padding: 20px 15px;
            text-align: center;
            color: white;
        }

        .logo {
            max-width: 100px;
            margin-bottom: 10px;
        }

        .forgot-header h1 {
            font-size: 20px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .forgot-header p {
            opacity: 0.9;
            font-size: 12px;
        }

        .forgot-body {
            padding: 20px;
        }

        .alert {
            padding: 10px 12px;
            border-radius: 6px;
            margin-bottom: 15px;
            font-size: 12px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

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

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

        .alert i {
            font-size: 13px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            color: #333;
            font-weight: 500;
            font-size: 13px;
        }

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

        .input-with-icon i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 14px;
        }

        .input-with-icon input {
            width: 100%;
            padding: 11px 11px 11px 38px;
            border: 2px solid #e1e1e1;
            border-radius: 6px;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .input-with-icon input:focus {
            border-color: #3A4ED5;
            outline: none;
            box-shadow: 0 0 0 3px rgba(13, 33, 161, 0.1);
        }

        .btn-submit {
            width: 100%;
            padding: 12px;
            background: #3A4ED5;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .btn-submit:hover {
            background: #0a1a85;
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(13, 33, 161, 0.3);
        }

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

        .btn-submit:disabled {
            background: #6b7280;
            cursor: not-allowed;
            transform: none;
        }

        .back-to-login {
            text-align: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .back-to-login a {
            color: #3A4ED5;
            text-decoration: none;
            font-weight: 500;
            font-size: 12px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .back-to-login a:hover {
            color: #0a1a85;
            text-decoration: underline;
        }

        .instructions {
            background: #f8f9fa;
            padding: 10px;
            border-radius: 6px;
            margin-top: 15px;
            font-size: 11px;
            color: #666;
            line-height: 1.4;
        }

        .instructions h4 {
            color: #333;
            margin-bottom: 5px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .instructions p {
            margin-bottom: 3px;
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .forgot-container {
                max-width: 100%;
            }

            .forgot-header {
                padding: 18px 12px;
            }

            .logo {
                max-width: 90px;
            }

            .forgot-header h1 {
                font-size: 18px;
            }

            .forgot-body {
                padding: 18px;
            }
        }

        @media (max-width: 360px) {
            .forgot-header h1 {
                font-size: 17px;
            }

            .forgot-header p {
                font-size: 11px;
            }

            .forgot-body {
                padding: 15px;
            }

            .input-with-icon input {
                padding: 10px 10px 10px 36px;
                font-size: 12px;
            }

            .btn-submit {
                padding: 11px;
                font-size: 13px;
            }

            .alert {
                padding: 9px 10px;
                font-size: 11px;
            }
        }

        @media (max-height: 600px) {
            body {
                align-items: flex-start;
                padding-top: 15px;
            }

            .forgot-header {
                padding: 15px 12px;
            }

            .logo {
                max-width: 80px;
                margin-bottom: 8px;
            }

            .forgot-body {
                padding: 15px;
            }

            .instructions {
                padding: 8px;
                margin-top: 12px;
            }
        }