body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* CSS Styles for the Login Form */

/* Container for the login box */
.login-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: auto;
}

/* Title of the login form */
.login-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Information message for administrators */
.admin-info {
    background-color: #ffebcc;
    color: #b35900;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

/* Form group for each input and label */
.form-group {
    margin-bottom: 15px;
}

/* Labels for inputs */
.form-group label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* Inputs styling */
.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Button styling */
.login-button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for the button */
.login-button:hover {
    background-color: #0056b3;
}

/* Error message styling */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

/* Styling for the Google reCAPTCHA widget */
.g-recaptcha {
    margin: 20px auto;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 400px) {
    .login-container {
        padding: 20px;
    }

    .login-title {
        font-size: 20px;
    }

    .login-button {
        font-size: 14px;
    }
}

 footer {
            background-color: #343a40;
            color: white;
            text-align: center;
            padding: 10px 0;
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
        }