.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 90%;
    background-color: #fffdf7;
    border-radius: 10px;
    padding: 30px;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-height: 80vh; /* Ajout de cette ligne */
    overflow-y: auto; /* Ajout de cette ligne */
}

.popup h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.popup label {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.popup input[type="text"],
.popup input[type="email"],
.popup input[type="password"],
.popup input[type="tel"],
.popup textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
}

.popup input[type="submit"] {
    background-color: #555;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.popup input[type="submit"]:hover {
    background-color: #333;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background-color: rgb(250, 75, 75);
    padding: 10px;
    border-radius: 10px;

} 

/* Style pour le fond gris semi-transparent */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}