 
        /* Wrapper to center the form */
        .wrapper {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
            background-color: #f4f4f4;
            padding: 20px;
        }

        /* Form container */
        .forgot-password-form {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 350px;
        }

        /* Input fields */
        .forgot-password-form input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
            box-sizing: border-box;
        }

        /* Button styling */
        .forgot-password-form button {
            width: 100%;
            padding: 10px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            margin-top: 10px;
        }

        /* Button hover effect */
        .forgot-password-form button:hover {
            background-color: #0056b3;
        }
        
        /* Disabled button styling */
        .forgot-password-form button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        /* Message containers */
        .error-message, .success-message, .warning-message {
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 15px;
            font-size: 14px;
            display: none;
        }
        
        .error-message {
            color: red;
            background-color: #ffe6e6;
            border-left: 4px solid red;
        }
        
        .success-message {
            color: green;
            background-color: #e6ffe6;
            border-left: 4px solid green;
        }
        
        .warning-message {
            color: #856404;
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
        }
        
        /* Back link */
        .back-link {
            display: inline-block;
            margin-top: 15px;
            color: #007BFF;
            text-decoration: none;
            font-size: 14px;
        }
        
        .back-link:hover {
            text-decoration: underline;
        }
        
        h2 {
            margin-bottom: 20px;
            color: #333;
        }
        
        .note {
            font-size: 12px;
            color: #666;
            margin-top: 10px;
        }
        
        .countdown-timer {
            font-size: 14px;
            color: #dc3545;
            font-weight: bold;
            margin-top: 10px;
        }
        
        .instruction {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }
 