/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0A2463, #0E4C92);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* ===== LOGIN CONTAINER ===== */
.login-container {
    width: 350px;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* ===== FORM STYLES ===== */
h2 {
    color: #0A2463;
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
    text-align: left;
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

button {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

button:hover {
    background-color: #0056b3;
}

/* ===== FOOTNOTE ===== */
.note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.note a {
    color: #007bff;
    text-decoration: none;
}

.note a:hover {
    text-decoration: underline;
}
