
        /* Modern Forgot Password Page Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            color: #333;
            padding-top: 80px; /* Account for header */
        }

        /* Breadcrumb Styling */
        .breadcrumb {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            padding: 0;
            position: sticky;
            top: 80px;
            z-index: 100;
        }

        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .breadcrumb a {
            color: #002147;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .breadcrumb a:hover {
            color: #b8860b;
        }

        .breadcrumb .separator {
            color: #999;
            font-size: 12px;
        }

        .breadcrumb .current {
            color: #666;
            font-weight: 400;
        }

        /* Main Container */
        .forgot-wrapper {
            padding: 40px 20px;
            min-height: calc(100vh - 160px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .forgot-container {
            max-width: 500px;
            width: 100%;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out;
        }

        /* Header Section */
        .forgot-header {
            background: linear-gradient(135deg, #002147 0%, #003366 100%);
            color: white;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .forgot-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
            animation: pulse 15s infinite;
        }

        .header-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 1;
        }

        .forgot-header h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .forgot-header .subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 300;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        /* Message Container */
        .message-container {
            padding: 0 40px;
            margin-top: -20px;
            position: relative;
            z-index: 10;
        }

        .message {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            animation: slideInDown 0.5s ease-out;
            opacity: 0;
            transform: translateY(-20px);
        }

        .message.show {
            opacity: 1;
            transform: translateY(0);
        }

        .error-message {
            background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
            color: #721c24;
        }

        .success-message {
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            color: #155724;
        }

        .message-icon {
            font-size: 24px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .message-content h4 {
            margin: 0 0 5px 0;
            font-size: 16px;
            font-weight: 600;
        }

        .message-content p {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
        }

        .message-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: inherit;
            font-size: 18px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s ease;
            padding: 5px;
        }

        .message-close:hover {
            opacity: 1;
        }

        /* Form Styling */
        .modern-form {
            padding: 40px;
        }

        .form-section {
            margin-bottom: 35px;
            animation: fadeIn 0.8s ease-out;
        }

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

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

        .required {
            color: #e74c3c;
            font-weight: 400;
        }

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

        .input-icon {
            position: absolute;
            left: 15px;
            color: #999;
            font-size: 16px;
            transition: color 0.3s ease;
            z-index: 2;
        }

        .form-group input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }

        .form-group input:focus {
            outline: none;
            border-color: #b8860b;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
        }

        .form-group input:focus + .input-icon {
            color: #b8860b;
        }

        .form-group input.error {
            border-color: #e74c3c;
            background-color: #fef9f9;
        }

        .form-group input.success {
            border-color: #28a745;
            background-color: #f8fff9;
        }

        /* Submit Button */
        .form-actions {
            text-align: center;
            margin-top: 35px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #b8860b 0%, #9a7209 100%);
            color: white;
            padding: 15px 50px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
            width: 100%;
            justify-content: center;
            position: relative;
        }

        .submit-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
        }

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

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

        .submit-btn.loading {
            pointer-events: none;
        }

        .submit-btn .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s linear infinite;
        }

        .submit-btn.loading .spinner {
            display: block;
        }

        .submit-btn.loading .btn-text {
            display: none;
        }

        .login-link {
            margin-top: 25px;
            text-align: center;
            color: #666;
        }

        .cta-link {
            color: #b8860b;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .cta-link:hover {
            color: #9a7209;
            text-decoration: underline;
        }

        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, #e8f4fd 0%, #d1ecf1 100%);
            border-left: 4px solid #002147;
            padding: 20px;
            margin: 20px 40px;
            border-radius: 8px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .info-box i {
            color: #002147;
            font-size: 20px;
            flex-shrink: 0;
        }

        .info-box div {
            flex: 1;
        }

        .info-box h4 {
            color: #002147;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .info-box p {
            color: #333;
            font-size: 13px;
            line-height: 1.5;
            margin: 0;
        }

        /* Success State */
        .success-state {
            display: none;
            text-align: center;
            padding: 40px;
            animation: fadeInUp 0.6s ease-out;
        }

        .success-state.show {
            display: block;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 48px;
            color: #28a745;
            border: 3px solid rgba(40, 167, 69, 0.2);
        }

        .success-state h2 {
            color: #002147;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .success-state p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: rotate(0deg) scale(1);
            }
            50% {
                transform: rotate(180deg) scale(1.1);
            }
            100% {
                transform: rotate(360deg) scale(1);
            }
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }

            .breadcrumb {
                top: 60px;
            }

            .forgot-container {
                margin: 0 10px;
                border-radius: 15px;
            }
            
            .forgot-header {
                padding: 30px 20px;
            }
            
            .forgot-header h1 {
                font-size: 24px;
            }
            
            .modern-form {
                padding: 20px;
            }
            
            .message-container {
                padding: 0 20px;
            }
            
            .info-box {
                margin: 20px;
            }
        }

        @media (max-width: 480px) {
            .forgot-header h1 {
                font-size: 22px;
            }
            
            .form-group input {
                font-size: 14px;
                padding: 12px 12px 12px 40px;
            }
            
            .submit-btn {
                padding: 12px 30px;
                font-size: 16px;
            }
        }
