body {
    min-height: 100vh;
    background: url('../resourcesnew/Login page/Login_banner.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    body {
        background: url('../resourcesnew/Login page/Login_banner_mobile.jpg') center/cover no-repeat;
    }
}

.header {
    background: #f8fafc;
    backdrop-filter: blur(10px);
    padding: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.role-option.active {
    background-color: #1e3799;
    color: white;
    border-color: #1e3799;
}

.login-box {
    animation: fadeIn 0.5s ease;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}