/* Login page background */
body[data-path="login"] {
    background: url("/files/chadema-image.jpg") no-repeat center center fixed;
    background-size: cover;
}

/* Dark overlay for readability */
body[data-path="login"]::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

/* Hide ERPNext navbar on login */
body[data-path="login"] header,
body[data-path="login"] .navbar {
    display: none !important;
}

/* Remove top spacing */
body[data-path="login"] .page-content {
    padding-top: 0 !important;
}


/* Login title: "Login to CHADEMA ERP" */
body[data-path="login"] .page-card-head h4,
body[data-path="login"] .login-title,
body[data-path="login"] h4 {
    color: #ffffff !important;
    font-weight: 700;
    text-align: center;
}

/* Subtitle */
body[data-path="login"] .page-card-head p {
    color: rgba(255,255,255,0.8) !important;
    text-align: center;
}


/* Remove Help menu everywhere */
header li.dropdown-help {
    display: none !important;
}
