/* In css/login_page.css */

#login-page {
    /* Set the background image */
    background-image: url('../images/map.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    /* Required for the overlay's positioning */
    position: relative;
    overflow: hidden;
}

/* Create the overlay using the reliable z-index: -1 method */
#login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Black overlay with 55% opacity */
    background-color: rgba(0, 0, 0, 0.55);

    /* Place the overlay BEHIND the page content */
    z-index: -1;
}

/* The content box on the login page */
#login-page .content-box {
    background-color: rgba(42, 54, 74, 0.9);
    /* A nice dark, semi-transparent blue */
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 90%;
}

/* Text inside the login page's content box MUST be light */
#login-page .content-box h1,
#login-page .content-box h2,
#login-page .content-box p,
#login-page .content-box label {
    color: #f8f9fa;
    /* Light text for readability */
}
/* --- Styles for Forgot Password / Reset Forms --- */

/* This style can be used for any page that has a single form centered on the screen. */
.form-container {
    width: 100%;
    max-width: 450px;
    padding: 15px;
    margin: auto;
}
