html, body {
    height: 100%;
    margin: 0;
    background-color: #f0f0f0 !important;
    color: #000 !important;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('../images/login_background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header, footer {
    flex-shrink: 0;
}

main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    margin: 1rem;
}

/* Remove all dark mode preferences */
@media (prefers-color-scheme: dark) {
    html, body {
        background-color: #f0f0f0 !important;
        color: #000 !important;
    }

    .card {
        background: rgba(255, 255, 255, 0.95) !important;
    }
}
