/* FONDO OSCURO */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    
    /* ESTO ES LO CRÍTICO: OCULTA POR DEFECTO */
    display: none; 

    justify-content: center;
    align-items: center;

    z-index: 99999;
}

/* VENTANA */
.popup {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    width: 330px;
    position: relative;
    z-index: 100000;
}

/* BOTONES */
.popup button {
    background-color: #6c8cff;
    border: none;
    padding: 10px 20px;
    margin: 10px 8px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    z-index: 100001;
    color: white; /* Añadido para mejor visibilidad del texto */
}

.popup button:hover {
    background-color: #4e72ff;
}

/* PARA EVITAR QUE EL FORM TAPE EL POPUP */
.register-container {
    position: relative;
    z-index: 1;
}