/* Custom styles */
.auth-bg {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}
.form-container {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}
.btn-primary {
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}
.input-field:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(7, 117, 251, 0.15) 0%,
        transparent 70%
    );
    z-index: -1;
    animation: pulse 8s infinite ease-in-out;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}
