input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
textarea {
    width: 100% !important;
    border: 1px solid #666 !important;
    border-radius: 3px !important;
    padding: 1rem !important;
    transition: all .3s !important;
}

[type=button],
[type=submit] {
    display: inline-block;
    font-weight: 400 !important;
    color: #c36 !important;
    text-align: center;
    white-space: nowrap;
    background-color: transparent !important;
    border: 1px solid #c36 !important;
    padding: 0rem 1rem !important;
    font-size: 1rem !important;
    border-radius: 3px !important;
    transition: all .3s;
}

[type=button]:hover,
[type=submit]:hover {
    background-color: var(--fs-color-primary) !important;
    color: #fff !important;
    border-color: var(--fs-color-primary) !important;
}

/* ==========================================================================
   MIN-WIDTH (Mobile First - Ưu tiên từ thấp đến cao)
   ========================================================================== */

@media (min-width: 375px) {
    /* Mobile L */
}

@media (min-width: 430px) {
    /* Mobile XL */
}

@media (min-width: 768px) {
    /* Tablet */
}

@media (min-width: 820px) {
    /* Tablet L */
}

@media (min-width: 1024px) {
    /* Laptop / iPad Pro */
}

@media (min-width: 1280px) {
    /* Desktop */
}

@media (min-width: 1920px) {
    /* Large Desktop */
}

/* ==========================================================================
   MAX-WIDTH (Desktop First - Ưu tiên từ cao xuống thấp)
   ========================================================================== */

@media (max-width: 1920px) {
    /* Max Large Desktop */
}

@media (max-width: 1280px) {
    /* Max Desktop */
}

@media (max-width: 1024px) {
    /* Max Laptop / iPad Pro */
}

@media (max-width: 820px) {
    /* Max Tablet L */
}

@media (max-width: 768px) {
    /* Max Tablet */
}

@media (max-width: 430px) {
    /* Max Mobile XL */
}

@media (max-width: 375px) {
    /* Max Mobile L */
}