.container-hilton-form-black-friday .row-primary {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.container-hilton-form-black-friday .row-primary .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-hilton-form-black-friday .mt-24 {
    margin-top: 24px;
}

.container-hilton-form-black-friday .row-fields {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.container-hilton-form-black-friday .row-field-12 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    gap: 16px;
}

.container-hilton-form-black-friday .col-form .col-field {
    width: 100%;
}

.container-hilton-form-black-friday input[type="text"], 
.container-hilton-form-black-friday input[type="tel"], 
.container-hilton-form-black-friday input[type="email"] {
    border: 1.5px solid #DFDFE0;
    box-shadow: 0px 1px 2px 0px rgba(25, 25, 28, 0.04);
    padding: 16px;
    height: 56px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    background-color: #ffffff;
}

.container-hilton-form-black-friday .small {
    color: #ffffff;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    padding-top: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #fff;
}

.container-hilton-form-black-friday .field-checkbox {
    display: flex;
    gap: 8px;
}

.container-hilton-form-black-friday .field-checkbox p {
    margin: 0;
    line-height: normal;
}

.container-hilton-form-black-friday .field-checkbox .label-lgpd-checkbox {
    color: #ffffff;
}

.container-hilton-form-black-friday .field-checkbox a {
    text-decoration: underline;
    color: #ffffff;
}

.container-hilton-form-black-friday .field-button {
    margin-top: 24px;
}

.container-hilton-form-black-friday button {
    background-color: var(--e-global-color-primary);
    color: #ffffff;
    border: 1px solid var(--e-global-color-primary);
    font-weight: 500;
    opacity: 1;
    width: 100%;
    cursor: pointer;
}

.container-hilton-form-black-friday button:hover {
    opacity: .7;
}

.container-hilton-form-black-friday button:active {
    opacity: .9;
}

.container-hilton-form-black-friday button:disabled {
    opacity: .8;
    cursor: not-allowed;
}

.container-hilton-form-black-friday .field-required-message {
    color: red;  
}

.container-hilton-form-black-friday .row-field-checkbox {
    display: flex;
    flex-direction: row;    
    gap: 10px;
    margin-bottom: 12px;
}

.container-hilton-form-black-friday .row-field-checkbox .field-checkbox label {
    display: flex;
    color: #ffffff;
    line-height: 130%;
    font-weight: 500;
}

.container-hilton-form-black-friday input[type="checkbox"] {
    appearance: none; /* Hide default checkbox */
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    background-color: transparent; /* Unchecked background color */
    border-radius: 3px;
    cursor: pointer;
    display: inline-block; /* Essential for styling */
    position: relative; /* For positioning the checkmark */
    margin: 0 8px 0 0;
}

.container-hilton-form-black-friday input[type="checkbox"]:checked {
    background-color: #000; /* Checked background color */
    border-color: #009DE1;
}

/* Styling the checkmark */
.container-hilton-form-black-friday input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #009DE1;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.container-hilton-form-black-friday .label-consent-checkbox {
    color: #ffffff;
    line-height: 130%;
    font-weight: 500;
}

.container-hilton-form-black-friday .row-message-form .message {
    padding: 16px 16px 16px 52px;
    border-radius: 8px;
    min-height: 56px;
    color: #0D0D0E;
    font-weight: 500;
    line-height: 150%;
    background-image: url('https://hiltonbarra.com.br/wp-content/themes/hiltonbarra/img/icon-sucess.svg');
    background-repeat: no-repeat;
    background-position: 12px 16px;
    background-color: rgba(230, 251, 243, 1);
    border: 1px solid #08D48B14;
    margin: 1em auto;
    box-shadow: 0px 1px 2px 0px rgba(25, 25, 28, 0.04);
}

@media(max-width: 1215px) {
    .container-hilton-form-black-friday .col-form input[type="text"],
    .container-hilton-form-black-friday .col-form input[type="email"],
    .container-hilton-form-black-friday .col-form input[type="tel"] {
        font-size: 14px;
    }

    .container-hilton-form-black-friday .col-form textarea {
        font-size: 14px;
    }

    .container-hilton-form-black-friday .field-checkbox .label-lgpd-checkbox,
    .container-hilton-form-black-friday .field-checkbox .label-lgpd-checkbox p {
        font-size: 14px;
    }

    .container-hilton-form-black-friday .field-buttons {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-top: 16px;
        gap: 24px;
    }

    .container-hilton-form-black-friday .button-submit button {
        width: 100%;
    }
}

@media(max-width: 767px) {
    .container-hilton-form-black-friday .row-primary {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .container-hilton-form-black-friday .row-primary .col {
        width: 100%;
    }
}