/* Estilo general del login */
.auth-page-wrapper {
    background: linear-gradient(to right, #0062E6, #33AEFF); /* Fondo degradado */
    color: #fff;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.bg-overlay {
    background: rgba(0, 0, 0, 0.5); /* Overlay oscuro */
}

.logo {
    height: 100px;
    transform-style: preserve-3d;
    animation: spin 5s linear infinite;
}
@keyframes spin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

/*.animated-title {
    font-size: 2rem;  Tamaño del texto */
   /* font-weight: bold;
    background: linear-gradient(270deg, #ffcc00, #ff33cc, #33ccff, #66ff66, #ffcc00);  Colores brillantes
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 4s ease infinite;  Animación infinita 
} */
.animated-title {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(270deg, #000000, #0033cc, #000000, #0066ff, #000000);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 4s ease infinite;
}


@keyframes animate-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.carousel-item p {
    color: #FFFFFF;
    font-size: 18px;
    font-style: italic;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.form-control, .btn {
    border-radius: 10px; /* Bordes más redondeados */
}

.btn-success {
    background-color: #28a745;
    border: none;
}

.btn-success:hover {
    background-color: #218838;
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 0;
    position: absolute;
    width: 100%;
    bottom: 0;
}

/* Mejoras en responsive */
@media (max-width: 768px) {
    .logo {
        height: 80px;
    }
    .form-control {
        font-size: 16px;
    }
    .carousel-item p {
        font-size: 16px;
    }
}

.btn-primary:hover {
        background-color: #0056b3;
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    }
