/* CSS cho button liên hệ - copy chính xác style từ CSS cũ */
#contact-submit-btn {
    /* Reset button mặc định */
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    
    /* Copy chính xác CSS từ .home-cta-button, .faq-cta-button, .qt-cta-button */
    width: 150px;
    height: 40px;
    background-color: #FFF600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: normal;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Đảm bảo button có style giống hệt CSS cũ */
#contact-submit-btn:hover {
    /* Giữ nguyên hover effect từ CSS cũ */
    text-decoration: none;
}

#contact-submit-btn:focus {
    outline: none;
}

#contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#contact-submit-btn:focus {
    outline: none;
}

#contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Đảm bảo các class button gốc vẫn hoạt động cho các element khác */
.home-cta-button,
.faq-cta-button,
.qt-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: center;
}

/* CSS để giữ nguyên kích thước input khi focus và autocomplete */
input[type="text"],
input[type="email"],
input[type="tel"],
select {
    box-sizing: border-box !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 30px !important;
    padding: 0 15px !important;
    font-size: 16px !important;
    outline: none !important;
}

/* Đảm bảo input không bị thay đổi kích thước khi focus */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
    box-sizing: border-box !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 30px !important;
}

/* Tắt autocomplete nếu muốn */
input[type="text"]::-webkit-autofill,
input[type="email"]::-webkit-autofill,
input[type="tel"]::-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: inherit !important;
}
