/* Reset and base styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body, html { height: 100%; font-family: 'Segoe UI', Tahoma, sans-serif; }

/* The Full Screen Background */
.hero-background {
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('login-background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex; /* Flexbox for centering */
    align-items: center;
    justify-content: center;
}

/* The Centered Card */
.login-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo { width: 150px; margin-bottom: 30px; }

.input-group { text-align: left; margin-bottom: 20px; }

.input-group label { display: block; margin-bottom: 5px; color: #333; font-weight: 600; }

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.login-btn:hover { background-color: #0056b3; }