.auth-modal-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.auth-modal-panel:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.auth-modal-primary {
    background-image: linear-gradient(135deg, #052e24 0%, #10b981 100%);
}

@keyframes auth-modal-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-modal-enter {
    animation: auth-modal-fade-in 0.8s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
    .auth-modal-enter {
        animation: none;
    }
}
