/* Стили для фона (overlay) */
#my-popup {
    display: none; /* По умолчанию скрыто */
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.close_popup
{position:relative;
display: block;
float: right;
cursor: pointer;
transform: rotate(45deg);
}

/* Стили самого окна */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.popup-content span
{font-size: 24px;}

.popup-content p
{font-size: 18px;}

.popupform input
{width: 100%;
height: 50px;
padding: 7px;
outline: none;
border: none;
border-bottom: 1px solid #000000;
background: none;
margin-bottom: 20px;
color: #000000;
font-family: "Montserrat", sans-serif;
}

.popupform input::input-placeholder
{color:#000000;}


.popupform button
{width:100% !important;
height: 60px;
border:none !important;
background:#E60000;
border-radius: 7px;
padding: 0px;
margin-left:0px !important;
}