.forms {
    margin-top: 30px;
    padding: 40px;
    border-radius: 12px;
}

.forms-gray {
    background: #EAEDEF;
}

/* Стили для попап формы */
.forms-popup {
    margin-top: 0;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.forms-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 30px;
}

/* Уменьшенный размер заголовка для попапа */
.forms-popup .forms-title {
    font-size: 28px;
    margin-bottom: 0px;
}

.forms-subtitle {
    margin-bottom: 18px;
    font-size: 16px;
}

.forms-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 18px;
}

/* Вертикальная верстка для попапа */
.forms-container-vertical {
    flex-direction: column;
    gap: 15px;
}

.forms-col-3 {
    width: calc(100% / 3 - 14px);
}

.forms-col-2 {
    width: calc(50% - 10px);
}

.forms-col-1 {
    width: 100%;
}

.forms-input__title {
    line-height: 100%;
    margin-bottom: 10px;
    display: block;
}

.forms-input input[type="email"],
.forms-input input[type="text"] {
    border: 0;
    outline: 0;
    padding: 6px 12px;
    border-radius: 8px;
    line-height: 100%;
    width: 100%;
}

.forms-err {
    height: 0;
    font-size: 14px;
    padding-left: 8px;
    color: #f46161;
    display: none;
}

.forms-err.showed {
    display: block;
}

.forms-input textarea {
    border: none;
    width: 100%;
    outline: none;
    border-radius: 8px;
    max-height: 90px;
}

.forms-input {
    position: relative;
}

.forms-input input[type="file"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.forms-input input[type="file"] + label {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #196CA4;
}

.forms-file__desk {
    color: #8E9294;
    font-size: 16px;
    font-weight: 300;
}

.forms-group-file {
    display: flex;
    align-items: center;
    gap: 30px;
}

.forms-submit {
    gap: 30px;
    display: flex;
    align-items: center;
}

/* Вертикальная верстка для кнопки отправки в попапе */
.forms-submit-vertical {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.forms-submit__input input {
    border: 0;
    outline: 0;
    padding: 20px 60px;
    border-radius: 8px;
    background: #00AEEF;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.forms-submit__desk {
    max-width: 360px;
    width: 100%;
    color: #8E9294;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
}

.forms-submit__desk a {
    color: #196CA4;
}

/* Стили для капчи в попапе */
.forms-popup .smart-captcha {
    margin: 15px 0;
}

.forms-input {
    border: 1px solid var(--f-button-active-bg);
    border-radius: 5px;
}

.forms-input input:-moz-placeholder, .forms-input input::placeholder {
    color: #bdbdbd;
}

#captcha-container {
    height: 102px !important;
}

#popup-form {
    padding: 0;
    border-radius: 20px;
}
/* Адаптивность для попапа */
@media (max-width: 768px) {
    .forms-popup {
        padding: 20px;
    }
    
    .forms-popup .forms-title {
        font-size: 24px;
    }
    
    .forms-submit__input input {
        padding: 15px 40px;
        font-size: 18px;
    }
}