/* Auth Styles */
body {
    background: var(--base-color-neutral--gray--900);
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
}
.auth-container {
    min-height: 100vh;
    background: transparent;
}
.form-card {
    background: rgba(45, 45, 45, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(109, 40, 217, 0.2);
}
.input-field {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(109, 40, 217, 0.3);
    transition: all 0.3s ease;
}
.input-field:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}
.btn-primary {
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.3);
}
.toggle-form {
    color: #a78bfa;
    transition: all 0.3s ease;
}
.toggle-form:hover {
    color: #c4b5fd;
}
