/* Specific styles for the login page */
body.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f7fa; /* Similar background as the main app */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.login-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 80%; /* User updated this */
    text-align: center;
}
.login-logo {
    margin-bottom: 20px;
}
.login-logo img {
    height: 5rem; /* Increased for better visual presence */
    margin: 0 auto;
}
.login-title {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    font-size: 1.75rem; /* Adjusted during previous edits */
}
.flash-message {
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    text-align: left;
}
.flash-message.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-message.danger { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-message.info { background-color: #cce5ff; color: #004085; border: 1px solid #b8daff; }
.flash-message.warning { background-color: #fff3cd; color: #856404; border: 1px solid #ffeeba; }

.login-form {
    margin-top: 20px;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}
.form-check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #555;
}
.form-check-input {
    margin-right: 8px;
}
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #007bff; /* Primary button color */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-login:hover {
    background-color: #0056b3;
}
