.popup {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.popup.active {
    display: flex;
    opacity: 1;
}
.popup_overlay {
    width: 100%;
    height: 100%;
    background: #00000061;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(4px);
    z-index: 1;
}
.popup_container {
    max-width: 500px;
    width: 100%;
    height: auto;
    padding: 15px;
    background: #fff;
    z-index: 2;
    text-align: center;
}
.popup__title {
     font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: rgba(134, 137, 84, .67); /* Укажите ваш цвет */
}
.popup_container input, .popup_container textarea, .popup_container select {
     width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background: #f9f9f9;
    transition: border-color 0.3s;
}
.popup_container input:focus, .popup_container textarea:focus {
     outline: none;
    border-color: rgba(134, 137, 84, .67);; 
}