/* Обертка для формы GetCourse */
.gc-form-wrapper {
    margin-top: 24px;
}

/* Переопределение базовых стилей формы GetCourse (классы могут незначительно отличаться в зависимости от типа виджета, здесь указаны наиболее распространенные) */
.gc-form {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Поля ввода */
.gc-form input[type="text"],
.gc-form input[type="email"],
.gc-form input[type="tel"],
.gc-form textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    margin-bottom: 16px !important;
    border: 1px solid #D0D5DD !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    color: #333 !important;
    background-color: #FAF9F6 !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.gc-form input[type="text"]:focus,
.gc-form input[type="email"]:focus,
.gc-form input[type="tel"]:focus,
.gc-form textarea:focus {
    border-color: #2C4A3B !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(44, 74, 59, 0.1) !important;
    background-color: #FFFFFF !important;
}

/* Плейсхолдеры */
.gc-form input::placeholder,
.gc-form textarea::placeholder {
    color: #98A2B3 !important;
}

/* Кнопка отправки формы GetCourse */
.gc-form button[type="submit"],
.gc-form .gc-btn {
    width: 100% !important;
    padding: 16px 32px !important;
    background-color: #2C4A3B !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 8px !important;
}

.gc-form button[type="submit"]:hover,
.gc-form .gc-btn:hover {
    background-color: #1e362a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(44, 74, 59, 0.2) !important;
}

/* Чекбоксы согласия */
.gc-form label {
    font-size: 0.85rem !important;
    color: #666666 !important;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    line-height: 1.4 !important;
}

.gc-form input[type="checkbox"] {
    margin-top: 3px !important;
    accent-color: #2C4A3B !important;
    width: 16px !important;
    height: 16px !important;
}

/* Адаптив для форм */
@media (max-width: 768px) {
    .gc-form input[type="text"],
    .gc-form input[type="email"],
    .gc-form input[type="tel"] {
        font-size: 16px !important; /* Предотвращает зум на iOS */
    }
}