/* ВСТАВЬТЕ ЭТОТ КОД В "ДОПОЛНИТЕЛЬНЫЙ CSS" В НАСТРОЙКАХ СТРАНИЦЫ/SITE SETTINGS */

/* Основные стили для форм */
.tpl-form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.tpl-form-input__label {
    position: relative;
    display: block;
    width: 100%;
}

.tpl-form-input__label--text {
    position: absolute;
    top: -8px;
    left: 12px;
    background: white;
    padding: 0 8px;
    font-size: 12px;
    color: #666;
}

.tpl-btn {
    background: linear-gradient(95deg, #ff6b00 0%, #ff0000 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
    text-align: center;
}

.tpl-btn:hover {
    transform: translateY(-2px);
}

.tpl-btn-wide {
    width: 100%;
}

/* Стили для ползунка суммы */
.tpl-form-range__display {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
}

.tpl-form-range__input {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    border: none;
    background: none;
    width: 100%;
    color: #333;
}

.tpl-form-range__controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.tpl-form-range__controls-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.tpl-form-range__controls-btn:hover {
    border-color: #ff6b00;
}

.tpl-form-range__controls-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 2px;
    background: #333;
}

.tpl-form-range__controls-btn_plus span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 12px;
    background: #333;
}

.tpl-form-range__values {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* Чекбоксы */
.tpl-form-checkbox__label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    cursor: pointer;
}

.tpl-checkbox {
    margin-right: 10px;
    margin-top: 2px;
}

.tpl-checkbox__label-link {
    color: #ff6b00;
    text-decoration: underline;
}

/* Безопасность */
.tpl-safety {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

/* Карточки преимуществ */
.tpl-advantage {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    text-align: center;
}

.tpl-advantage__ic {
    display: inline-block;
    margin-bottom: 15px;
}

.tpl-advantage p {
    margin: 0;
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .tpl-form-range__input {
        font-size: 24px;
    }
    
    .tpl-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
}