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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 80px; /* Height of the fixed topbar */
}

/* Forgot Password Page Styles */
        .forgot-password-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
        }

        .forgot-password-content {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
            max-width: 500px;
            margin: 0 auto;
        }

        .forgot-password-title {
            color: #262829;
            text-align: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .instructions {
            color: #333;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .instructions ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .instructions li {
            margin-bottom: 10px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #333;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            box-sizing: border-box;
        }

        .form-group input:focus {
            border-color: #FCCC0F;
            outline: none;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: #262829;
            color: #FCCC0F;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background-color: #000;
        }

        @media (max-width: 768px) {
            .forgot-password-container {
                margin: 20px;
                padding: 15px;
            }
            
            .forgot-password-content {
                padding: 20px;
            }
        }
