/* ===============================
   GLOBAL PAGE BACKGROUND
   =============================== */
body {
    background: linear-gradient(180deg, #013a76, #0059b3);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* ===============================
   HEADER
   =============================== */
header {
    background-color: #002f5b;
    color: white;
    text-align: center;
    padding: 20px 0;
}

header img {
    width: 130px;
    border-radius: 10px;
}

/* ===============================
   LOGIN FORM CONTAINER (same layout style as .request-form)
   =============================== */
.login-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    color: #1e3c72;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
}

/* ===============================
   FORM ELEMENTS
   =============================== */
.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* ===============================
   FORM OPTIONS (Remember me + Forgot)
   =============================== */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.form-options a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
}

.form-options a:hover {
    text-decoration: underline;
}

/* ===============================
   BUTTON STYLES (same as request form)
   =============================== */
.submit-btn {
    background: #1e3c72;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #2a5298;
}

/* ===============================
   REGISTER LINK
   =============================== */
.register-link {
    margin-top: 20px;
    text-align: center;
}

.register-link a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: underline;
}

/* ===============================
   FOOTER
   =============================== */
footer {
    background-color: #002f5b;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 768px) {
    .login-container {
        width: 90%;
        padding: 20px;
    }
}
