body {
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center;
}

.login-card h2 {
    color: #212529;
    font-weight: 800;
    margin-bottom: 5px;
}

.login-card p {
    color: #6c757d;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
}

.btn-login {
    background: #4361ee;
    color: white;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    font-weight: 700;
    border: none;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #3f37c9;
    transform: translateY(-2px);
}

.mode-selector {
    display: flex;
    background: #f1f3f5;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 25px;
}

.mode-selector input {
    display: none;
}

.mode-selector label {
    flex: 1;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
    color: #6c757d;
    margin: 0;
}

.mode-selector input:checked + label {
    background: white;
    color: #4361ee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.logo-container {
    margin-bottom: 20px;
}

.logo-container img {
    width: 80px;
    height: 80px;
}
