/* Login */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: white;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    text-align: center;
    width: 300px;
}

.login-logo {
    width: 100px;
    margin-bottom: 20px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #004080;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #003366;
}

.reset-link {
    display: block;
    margin-top: 12px;
    font-size: 0.9em;
    color: #004080;
    text-decoration: none;
}
.login-error {
    color: red;
    margin-bottom: 10px;
    font-size: 0.9em;
}
.btn-forgot {
    display: inline-block;
    margin-top: 10px;
    color: #004080;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
}
