body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 350px;
}

.login-container .logo {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.login-form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
}

.login-form input,
.login-form select {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.login-form select {
    height: calc(1.4em + 12px); /* Fixes inconsistent dropdown height across browsers */
}

.login-form button {
    background: #007bff;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1rem;
}

.login-form button:hover {
    background: #0056b3;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .login-container {
        width: 90%;
    }
}
