body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.login-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: url('../images/login_bg.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
    z-index: 1;
}

.login-box {
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    width: 320px;
}

.login-box h2 {
    margin-bottom: 24px;
    color: #1e1e1e;
    font-weight: bold;
    text-align: center;
}

.login-box label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-size: 14px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.login-box button {
    width: 100%;
    padding: 12px;
    background-color: #c7202e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-box button:hover {
    background-color: #a21825;
}

.logo {
    position: absolute;
    bottom: 40px;
    left: 40px;
    height: 200px;
    width: auto;
    z-index: 2;
}
