/*  1️⃣ Animation ouverture / fermeture (smooth & clean)*/
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 30, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.popup-box {
    background: #ffffff;
    padding: 30px;
    width: 460px;
    border-radius: 5px;
    position: relative;

    transform: scale(0.7);
    opacity: 0;
    transition: all 0.35s ease;
	border-top: 7px solid #9fba1a;
}

/* Animation active */
.popup-overlay.active .popup-box {
    transform: scale(1);
    opacity: 1;
}

/*  2️⃣ Style GREEN (pro & moderne)*/

.popup-box h2 {
    text-align: center;
    color: #33691e;
    margin-bottom: 20px;
}

.popup-box input {
    width: 100%;
    padding: 11px;
    margin-bottom: 12px;
    border: 1px solid #DBDBDB;
    border-radius: 6px;
	color: #000000;
    font-size: 14px;
}

.popup-box input:focus {
    outline: none;
    border-color: #33691e;
    box-shadow: 0 0 5px rgba(30, 127, 67, 0.4);
}

.popup-box button {
    width: 100%;
    padding: 12px;
    background: #33691e;
	border-bottom: 5px solid #9fba1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
	border-bottom: 4px solid #9fba1a;
}

.popup-box button:hover {
    background: linear-gradient(135deg, #1e7f43, #145a32);
}

/*  3️⃣ Bouton fermer stylé*/

.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    color: #1e7f43;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

