   label.error{
        color:red;
        background:#FEF132;
        width: 100%;
        font-weight: bold;
        font-size: 0.9rem;
    }


    /* styles.css */
.preloader {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    border-radius: 10px;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.loader img {
    width: 50px; /* Ajusta el tamaño del GIF según sea necesario */
}

.loader p {
    margin-top: 10px;
    font-size: 18px;
    color: #FFF;
}