/*
Theme Name: OTV
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* Container chính của form */
.chiyo-contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
}

/* Các nhóm trường input */
.chiyo-contact-form .form-group {
    margin-bottom: 20px;
}

/* Kiểu dáng cho label */
.chiyo-contact-form label {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
}

/* Tạo bố cục 2 cột cho tên và số điện thoại */
.chiyo-contact-form .form-row {
    display: flex;
    gap: 20px;
}

.chiyo-contact-form .form-row .form-group {
    flex: 1;
}

/* Kiểu dáng chung cho tất cả input và textarea */
.chiyo-contact-form input[type="text"],
.chiyo-contact-form input[type="tel"],
.chiyo-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.chiyo-contact-form input[type="text"]:focus,
.chiyo-contact-form input[type="tel"]:focus,
.chiyo-contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Kiểu dáng cho textarea */
.chiyo-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Nút GỬI LIÊN HỆ */
.chiyo-contact-form .chiyo-submit-btn {
    display: block;
    width: 200px; /* Độ rộng tùy chỉnh theo hình ảnh */
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #2e56a4;
    border: 1px solid #2e56a4;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
}

.chiyo-contact-form .chiyo-submit-btn:hover {
    background-color: #24417a;
}

/* Nút GỬI LIÊN HỆ nằm cùng hàng với recaptcha */
.chiyo-contact-form .form-group-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}