/* Login Page CSS - Light White Theme */
.login-bg {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}
.login-bg::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
}
.login-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
}
.glass-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(99,102,241,0.06);
}
.input-field {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #1e293b;
    transition: all 0.3s ease;
}
.input-field::placeholder { color: #94a3b8; }
.input-field:focus {
    background: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
