/* ===== Base page ===== */
body {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background-color: #f7f7f7;
}

/* ===== Login box ===== */
.login-box {
    background-color: #ffffff;
    width: 400px;
    margin: 80px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Add space above the first form group */
.login-box .form-group:first-of-type {
    margin-top: 20px;
}

/* ===== Header ===== */
.login-header {
    background-color: #3c7383;
    color: #f0c674;
    padding: 12px 10px;
    border-radius: 6px 6px 0 0;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.01em;
}

/* ===== Form ===== */
.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    font-weight: normal;
    margin-bottom: 5px;
}

/* ===== INPUTS (Admin-like) ===== */
input[type="text"],
input[type="password"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #eef3ff;
    font-size: 14px;
}

/* ===== Button ===== */
button {
    width: 100%;
    padding: 10px;
    background-color: #3c7383;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #356a78;
}

/* ===== Footer ===== */
.forgot-password {
    margin-top: 10px;
    text-align: right;
    font-size: 12px;
}

.forgot-password a {
    color: #0645ad;
    text-decoration: none;
}
