.wpcf7-form {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    font-size: 16px;
}

.wpcf7-form input[type="submit"] {
    background-color: #0F4229; /* Màu nền của nút gửi */
    color: white; /* Màu chữ */
    border: none; /* Bỏ viền */
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease; /* Hiệu ứng chuyển đổi */
}

.wpcf7-form input[type="submit"]:hover {
    background-color: transparent; /* Nền trong suốt khi hover */
    border: 2px solid #0F4229; /* Viền màu #0F4229 khi hover */
    color: #0F4229; /* Màu chữ khi hover */
}