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

.popup-wrapper.show {
    display: flex; 
    opacity: 1; 
}

#confirmationForm {
    display: flex;
    justify-content: space-evenly;
}

.popup-form h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.popup-form p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.popup-form label {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.popup-container {
	background: white;
	padding: 20px;
	max-width: 600px;
	text-align: left;
	position: relative;
	border-radius: 5px;
	transform: scale(0.8); 
    transition: transform 0.5s ease; /
}

.popup-container button{
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.popup-close {
	position: absolute;
	top: 10px;
	right: 15px;
	text-decoration: none;
	font-weight: bold;
	color: black;
	cursor: pointer;
}


.popup-wrapper.show .popup-container {
    transform: scale(1); 
}

.popup-region__wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 60, 110, 0.80);
    backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    z-index: 1000000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.popup-region__wrapper.show {
    display: flex;
    opacity: 1;
}

.popup-region__logo {
    width: 100%;
    max-width: 124px;
    margin: auto auto 32px;
}

.popup-region__title {
    color: #FFF;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.popup-region__description {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}