.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 50px;
    position: relative;
    max-width: 1030px;
    display: flex;
    justify-content: center;
    border-radius: 35px;

}
.popup-content__title {
    font-size: 24px;
    font-weight: 600;
    color: #252B42;
    line-height: 32px;
    margin-bottom: 10px;
}
.popup-content__sub-title {
    font-size: 16px;
    font-weight: 400;
    color: #252B42;
    line-height: 22px;
    margin-bottom: 15px;
}

.popup-content .close {
    position: absolute;
    top: 17px;
    right: 26px;
    font-size: 24px;
    cursor: pointer;
}


.popup-content-image {
    margin-right: 50px;
    width: 100%;
}
.popup-content-image img {
    margin-bottom: 15px;
}

.popup-content__input-group {
    display: flex;
    border-radius: 19px;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    margin-top: 15px;
}

.popup-content__input {
    flex: 1;
    padding: 10px 10px 10px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #858C94;
    background-color: #f5f5f5;
    border-radius: 10px 0 0 10px;
}
.popup-content__input:hover {
    border: none!important;
}
.popup-content__input:focus {
    border: none!important;
    box-shadow: none!important;
}
.popup-content__input::placeholder {
    color: #858C94;
    font-size: 14px;
}
.popup-content__btn {
    background-color: #ffa500;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    transition: background-color 0.3s ease;
    text-wrap: nowrap;
}

.popup-content__btn:hover {
    background-color: #e69500;
}
.popup-content__agreement {
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    bottom: -28px;
    left: 5px;
}
.popup-content-text {
    position: relative;
}
.popup-content__input-group select {
    width: 100%;
    padding: 10px 10px 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    background-color: #f5f5f5;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #000;
    cursor: pointer;
}

/* Добавляем стрелку для select */
.popup-content__input-group select::after {
    content: "▼";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    border: none;
}
.popup-content__input-group select:hover {
    border: none!important;
}
.popup-content__input-group select:focus {
    box-shadow: none;
    outline: none;
    border: none!important;
}
.popup-content__input-group select:invalid{
    color: #858C94!important;
}