/* csswelcome.css */

/* Fondo dinámico y oscuro */
body {
    background-color: #030712;
    overflow-x: hidden;
}

/* Esferas de luz animadas en el fondo */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}
.orb-1 {
    top: -10%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #d946ef, #8b5cf6);
    animation-delay: -5s;
}
.orb-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ec4899, #6366f1);
    animation-delay: -2.5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

/* Glassmorphism Pro */
.glass-panel {
    background: rgba(17, 24, 39, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Animación suave para la entrada de los formularios */
.fade-in {
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Animación de flotado continuo del logo */
.logo-bounce {
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); filter: drop-shadow(0 10px 15px rgba(6, 182, 212, 0.3)); }
    50% { transform: translateY(-8px); filter: drop-shadow(0 20px 25px rgba(217, 70, 239, 0.5)); }
}