div.aviso {
    /*border: red 2px dashed !important;*/
    border-radius: 20px;
    padding: 15px;
    /*background: #ffcb0f;*/
    background-image: url(https://www.mspv.com.mx/wp-content/uploads/2025/02/back_aviso.jpg);
    background-size: cover;
    margin-bottom: 1em;
    color: #fff;
    font-family: "Noticia Text", serif;
}

div.aviso h3 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2em;
}

div.aviso ul {
    padding-bottom: .5em;
    padding-left: 2em;
    font-size: .8em;
    color: #fff;
}

div.aviso ul li {
    font-size: 1.1em;
    list-style-type: disc;
    color: #fff;
}

.hidden {
    display: none;
}

span#emailError {
    font-size: 0.9em;
    color: red;
}

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    max-width: 80%;
    max-height: 80%;
    animation: fadeIn 0.5s;
    cursor: pointer;
}

.popup-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}