/* avisoInsertarNuevoEstudiante.css */



.seccionNuevoEstudiante02 {

    background-color: #222;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
    border: 1px solid #555;
    border-radius: 6px;

    height: 47px;
    font-size: 22px;
    box-sizing: border-box;
    width: 90%;
   
}



/* Animación de partículas */
@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}



/* Animación de pulso del icono */
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Animación de flotación del icono */
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Símbolo de check dentro del icono */
.iconoExitoV2::before {
    content: '';
    width: 45px;
    height: 25px;
    border-left: 10px solid white;
    border-bottom: 10px solid white;
    transform: rotate(-45deg) translate(5px, -5px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

/* Efecto de brillo alrededor del icono */
.iconoExitoV2::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}





