@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container for the login box */
.login-container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 420px;
    width: 100%;
    margin: auto;
}

/* Title of the login form */
.login-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

/* Information message for administrators */
.admin-info {
    background-color: #e8f4fd;
    color: #0056b3;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid #cce5ff;
}

/* Form group for each input and label */
.form-group {
    margin-bottom: 20px;
}

/* Labels for inputs */
.form-group label {
    display: block;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Inputs styling */
.form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid #ced4da;
    border-radius: 6px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #80bdff;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Button styling */
.login-button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,123,255,0.2);
}

/* Hover effect for the button */
.login-button:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0,123,255,0.3);
}

.login-button:active {
    transform: translateY(1px);
}

/* Error message styling */
.error-message {
    background-color: #fdf3f4;
    color: #dc3545;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #f5c6cb;
}

/* Styling for the Google reCAPTCHA widget */
.g-recaptcha {
    margin: 25px auto;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: none;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 12px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
}