/* Login Page Specific Styles */
.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}

.login-container h1 {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #333;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form label {
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.login-form input {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-form input:focus {
    outline: none;
    border-color: #6aa9ff;
    box-shadow: 0 0 5px rgba(106, 169, 255, 0.5);
}

.error-message {
    color: red;
    margin-top: 10px;
    font-size: 0.9em;
}

/* Branding Section */
.branding {
    margin-bottom: 20px;
    text-align: center;
}

.branding h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 5px;
}

.branding .tagline {
    font-size: 1em;
    color: #666;
    font-weight: normal;
    margin-bottom: 15px;
}

/* Footer Section */
.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
}

.footer a {
    color: #6aa9ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer a:hover {
    color: #3c8dbc;
}
