body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #e9ecef;
    padding: 20px;
}

.login-form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    animation: slideDown 0.5s ease-out;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 24px;
}

.form-control {
    margin-bottom: 16px;
}

.form-control label {
    display: block;
    margin-bottom: 8px;
}

.form-control input {
    width: 100%; /* Adjusted width to 100% */
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-button {
    width: 100%; /* Adjusted width to 100% */
    padding: 12px;
    background-color: #A90705; /* Changed color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 8px;
}

.login-button:hover {
    background-color: darken(#A90705, 10%); /* Slightly darker on hover */
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert {
    padding: 15px;
    background-color: #A90705; /* Red background */
    color: white; /* White text */
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    border: 1px solid #d32f2f; /* Dark red border */
    font-weight: bold;
    animation: fadeIn 0.5s ease-in-out; /* Fade-in effect */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Existing styles... */

.form-control.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-control.remember-me label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #C0C0C0; /* Silver color */
    font-size: 0.9em;
    white-space: nowrap; /* Prevents wrapping */
}

.form-control.remember-me label input[type="checkbox"] {
    margin-right: 10px;
}

/* More styles... */

