/* ==============================
   LOGIN PAGE ONLY
============================== */

/* center login card vertically */
body .container {
    align-items: center;
}

/* ---------- INPUTS ---------- */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 13px 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fafafa;
}

input:focus {
    outline: none;
    border-color: #1f3c88;
    background: #ffffff;
}

/* ---------- LOGIN BUTTON (FIXED) ---------- */
button.login-btn {
    background: linear-gradient(135deg, #1f3c88, #304ffe) !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

button.login-btn:hover {
    background: linear-gradient(135deg, #0d2a6b, #1f3c88) !important;
}

/* override disabled rule from main.css */
button.login-btn:disabled {
    background: linear-gradient(135deg, #1f3c88, #304ffe) !important;
    opacity: 1 !important;
    cursor: pointer !important;
}

/* ---------- ERROR TEXT ---------- */
.error-text {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}
