/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0%   { opacity: 0; transform: scale(0.8); }
    60%  { opacity: 1; transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Estilos para #loginform */
#loginform {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s;
}

/* Imagen de logo (si deseas usar class o id) */
#loginform .logo img {
    width: 100%;
    max-width: 150px;
    animation: bounceIn 1s;
}

/* Botones */
.glowing-button {
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
    display: block;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glowing-button.continuar {
    background-color: #003366;
    box-shadow: 0 0 10px #003366;
}

.glowing-button.continuar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #003366, 0 0 40px #003366;
}

.glowing-button.multimozo {
    background-color: #ea5b5d;
    box-shadow: 0 0 10px #ea5b5d;
}

.glowing-button.multimozo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #ea5b5d, 0 0 40px #ea5b5d;
}

/* Íconos de Redes Sociales */
.glowing-icon {
    margin: 0 10px;
    font-size: 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glowing-icon.facebook {
    color: #3b5998;
    box-shadow: 0 0 10px #3b5998;
}

.glowing-icon.facebook:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px #3b5998, 0 0 40px #3b5998;
}

.glowing-icon.whatsapp {
    color: #25d366;
    box-shadow: 0 0 10px #25d366;
}

.glowing-icon.whatsapp:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px #25d366, 0 0 40px #25d366;
}

.glowing-icon.instagram {
    color: #e4405f;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: 0 0 10px #e4405f;
}

.glowing-icon.instagram:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px #e4405f, 0 0 40px #e4405f;
}

/* Rotación del texto con color */
.rotating-text {
    display: inline-block;
    transition: transform 0.6s ease;
}

.rotating-text:hover {
    transform: rotateY(360deg);
}
