/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 2.0.2
*/

/* Для полей email и телефона в одну строку */
.email-phone-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.email-col, 
.phone-col {
    flex: 1;
}

/* Принудительное уменьшение textarea */
.small-textarea textarea {
    height: 60px !important; /* Фиксированная высота */
    min-height: 60px !important;
    resize: vertical;
}

/* Для мобильной адаптации */
@media (max-width: 480px) {
    .email-phone-row {
        flex-direction: column;
        gap: 0;
    }