/* Bao bọc form */
.custom-contact-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: sans-serif;
}

/* Các hàng của form */
.custom-contact-form .form-row {
    margin-bottom: 20px;
}

/* Chia 2 cột cho Họ tên và Số điện thoại */
.custom-contact-form .split-row {
    display: flex;
    gap: 20px;
}

.custom-contact-form .form-col {
    flex: 1;
}

/* Định dạng nhãn (label) */
.custom-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

/* Định dạng ô nhập liệu (input, textarea) */
.custom-contact-form input[type="text"],
.custom-contact-form input[type="tel"],
.custom-contact-form input[type="email"],
.custom-contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    border-color: #002e70;
    outline: none;
}

/* Định dạng nút Gửi liên hệ */
.custom-submit-btn {
    width: 100%;
    background-color: #002266; /* Màu xanh đen giống ảnh */
    color: #ffffff;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.custom-submit-btn:hover {
    background-color: #001a4d;
}

/* Responsive cho mobile: chuyển 2 cột thành 1 cột */
@media (max-width: 600px) {
    .custom-contact-form .split-row {
        flex-direction: column;
        gap: 20px;
    }
}