:root {
    --first-background: rgb(0, 0, 0);
    --second-background: rgb(236, 236, 236);
    --third-background: white;
    --fourth-background: #cea56c;
    --firs-textcolor: #00a99d;
    --second-textcolor: #cea56c;
}

main {
    padding-top: 70px;
    padding-bottom: 50px;
}

h1 {
    color: #cea56c;
}

/* Modificacion de los input */

input[type="checkbox"]:checked {
    accent-color: #cea56c;
    border: 1px solid #be9458;
    color: white !important;

}

/* Modificacion de los input */
.title-booking {

    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

/* .booking{ 

    display: flex;
    flex-direction: column;
    align-items: center;

} */

.input-booking {

    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-left: 10px; */
    gap: 40px;

}

.input-booking input {
    width: 1000px;
    height: 40px;
    border: 2px solid #cea56c;
    border-radius: 8px;
    padding-left: 15px;

}
.acento{
    color: #00a99d;
    cursor: pointer;
}

.checkbox-booking {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 70px;

}

.first-checkbox-input {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.second-checkbox-input {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-booking {

    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;

}


#choose-option {
    width: 1000px;
    height: 40px;
    border: 2px solid #cea56c;
    border-radius: 6px;
    margin: 40px;
    padding-left: 15px;

}

#question-comments {
    width: 1000px;
    height: 40px;
    border: 2px solid #cea56c;
    border-radius: 6px;
    padding-left: 15px;
}

#privacy-policy-input {
    margin-top: 30px;
}

.btn-send {
    background-color: #cea56c;
    width: 80px;
    height: 50px;
    border: none;
    border-radius: 6px;
    margin-top: 20px;
}

#info-booking {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: black;
    color: white;
    height: 200px;

}

.info {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.legal-info {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tag-copyright {
    display: flex;
    flex-direction: column-reverse;

}

@media only screen and (max-width: 768px) {
    /* 
    * {
        border: 2px solid red;
    } */

    body,
    html {
        overflow-x: hidden;
    }

    main {
        width: 100%;
        align-content: center;
    }

    .input-booking {
        width: 95%;
        display: flex;
        flex-direction: column;
        align-content: center;
    }

    .input-booking input {
        width: 95%;
    }

    .checkbox-booking {
        width: 92%;
    }

    .contact-booking {
        width: 95%;
    }

    .contact-booking input {
        width: 95%;
    }

    .booking {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .privacy-policy-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .privacy-policy-container span {
        display: flex;
        flex-direction: row;
        align-items: center
    }

    #privacy-policy-input {
        width: 30px !important;
        margin: 0px;
    }

    .main {
        justify-items: center;
    }

}