/* Full page background */
body {
    background: url("/static/images/login_background_image.jpg") no-repeat center center fixed;
    background-size: cover; /* make it cover the entire screen */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.login-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
}

.login-card h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #333333;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: 0.3s;
}

.form-control:focus {
    box-shadow: none;
    border-color: #4A90E2;
}

.btn-login {
    background: #4A90E2;
    color: #fff;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-login:hover {
    background: #357ABD;
}

.form-text {
    text-align: center;
    margin-top: 1rem;
    color: #666666;
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .login-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}
