/* Global Styles */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f9fc;
    margin: 0;
    flex-direction: column;
}

/* Login Form */
#login-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
}
input[type="password"] {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    background-color: #004e89;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #00325d;
}
.error {
    color: red;
    font-size: 0.9em;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #004e89;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
}
footer a {
    color: #a0d8ef;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}