body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* =========================
   Login Page Background
   ========================= */
.body-bg-fixed.login-bg {
    background: url('/images/login-background.png') center center / cover no-repeat fixed !important;
}

.login-container {
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 350px;
    width: 100%;
    text-align: center;
    border: 2.5px solid #ECD189;
    position: relative;
    z-index: 1;
    color: #ECD189;
}

.login-container h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ECD189;
}

.login-container input {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1.2em;
    border: 1.5px solid #ECD189;
    border-radius: 8px;
    font-size: 1.1em;
    background: #fff;
    color: #AE1C33;
}

.login-container input:focus {
    border-color: #392F5A;
    outline: none;
}

.login-container button {
    background: #392F5A;
    color: #ECD189;
    border: none;
    border-radius: 8px;
    padding: 0.8em 2em;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.login-container button:hover {
    background: #241c38;
    color: #ECD189;
}

.login-error {
    color: #ECD189;
    margin-bottom: 1em;
    font-weight: bold;
}

/* =========================
   Login Container Background
   ========================= */
.login-container-bg {
    background: url('/images/login-section-background.png') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.login-container-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(174, 28, 51, 0.7);
    /* Less opaque for clearer image */
    z-index: 0;
    border-radius: 18px;
}

.login-container-bg>* {
    position: relative;
    z-index: 1;
}