body {
    background: #cccccc;
    /* background: #f8f9fa; */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-image: url('../../../static/img/San Diego Skyline.jpg');
    /* background-image: url('../../../static/img/City Heights Center.jpg'); */
    /* background-image: url('../../../static/img/mountains-bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px); */
}

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: #b9002c;
    border: none;
    transition: background-color 0.3s ease;
}

.login-card .btn-primary:hover {
    background-color: #a00026;
}

.form-control:focus {
    border-color: #6d5dfc;
    box-shadow: 0 0 5px rgba(109, 93, 252, 0.5);
}