/*
 * NOTE: Colors intentionally hardcoded — this file is loaded standalone (login page)
 * and CSS custom properties from main.css/variables.css are not available here.
 *
 * Token equivalents for reference:
 *   #ba002b  → --color-primary
 *   #a00026  → --color-primary-dark
 *   rgba(185, 0, 44, 0.12) → rgba(var(--color-primary-rgb), 0.12)
 */
body {
    background: #1a1a2e;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-image: url("../../img/San Diego Skyline.85a9d12d73c4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 767.98px) {
    body {
        background-attachment: scroll;
    }
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black with 50% opacity */
    z-index: 1;
}

.login-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    padding: 30px;
    width: 100%;
}

.login-card .btn-primary {
    background-color: #ba002b;
    border: none;
    transition: background-color 0.3s ease;
}

.login-card .btn-primary:hover {
    background-color: #a00026;
}

.form-control:focus {
    border-color: #ba002b;
    box-shadow: 0 0 0 4px rgba(185, 0, 44, 0.12);
}

.login-forgot-link {
    color: #ba002b;
    font-size: 0.875rem;
}

.login-forgot-link:hover {
    color: #a00026;
}