body {
    background-image: url('../images/splashscreen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}



.login-container {
    position: relative;
    z-index: 1;
    max-width: 450px;
    width: 100%;
    padding: 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}



.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-square {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 80px;
    background: rgba(255, 255, 255, 0.50);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    margin: 0 auto;
}

.login-logo-img {
    width: 500px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.logo-header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.login-card .form-control {
    background: white;
    border: 1px solid #ddd;
}

.login-card label {
    color: white;
    font-weight: 500;
}
