/* Aurora Background (canvas scene, matches aurora67.com) */
#aurora-scene {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #010810;
}

/* Login card enhancement */
.auth-page-content .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.auth-page-content .text-primary {
    background: linear-gradient(45deg, #00ff80, #0080ff, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom scrollbar for inputs */
.form-control {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 255, 128, 0.3) !important;
    color: #333 !important;
}

.form-control:focus {
    border-color: #00ff80 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 128, 0.25) !important;
}

.btn-success {
    background: #00bfff !important;
    border: none !important;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 128, 0.4);
}
