.head-register{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.head-register img{
    width: 340px;
}
.head-register h2{
    text-align: center;
    font-weight: 300;
}
.head-register h2 span{
    font-weight: 700;
}
.banner img{
    width: 100%;
}
form{
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2%;
    margin: 20px auto;
}
.back-gray{
    background-color: #efefef;
    padding: 5px 10px;
    width: 100%;
}
.back-gray h2{
    font-size: 1.5rem;
}
td img{
    width: 95px;
}
table{
    display: flex;
    align-items: center;
    
}
th{
    font-size: 2rem;
    text-transform: uppercase;
}
td{
    height: 60px;
    font-size: 1.5rem;
    padding-right: 40px;
    border-right: solid;
}
.td-check{
    padding-top: 9px;
    padding-right: 0;
    border-right: none;
}
input[type="checkbox"]{
    width: 40px;
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 5px solid #000;
    margin: 0 27.5px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}
input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 25px;
    height: 25px;
    background-color: #000;
    border-radius: 2px;
    display: none;
}
input[type="checkbox"]:checked::before {
    display: block;
}
.comentarios{
    display: flex;
    justify-content: center;
    column-gap: 30px;
    align-items: center;
    padding: 20px 0;
    width: 80%;
}
.comentarios h2{
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 600;
}
.comentarios textarea{
    height: 5rem;
    width: 65%;
    resize: none;
    border: solid 4px;
    border-radius: 8px;
}
/*COMO NOS CONOCISTE*/
.learn-services .check-service{
    padding: 0;
    border: none;
    text-align: start;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    margin-right: 10px;
}
.check-service label{
    width: 125px;
    font-size: 18px;
    text-align: right;
}
.check-service input{
    margin: 5px;
}
/*DATOS DE CONTACTO*/
.form-group{
    display: flex;
    width: 100%;
    flex-direction: column;
}
.form-section{
    width: 100%;
    display: flex;
    align-items: center;
    margin: 8px 0;
    justify-content: space-between;
}
.form-section input{
    border: solid;
    border-radius: 5px;
}
.i-name{
    width: 78.3%;
}
.label-w{
    width: 200px;
}
button {
    width: 100%;
    height: 65px;
    background: #437683;
    color: white;
    font-size: 20px;
    margin-top: 15px;
}
@media (max-width: 840px){
    td img{
        width: 65px;
    }    
    input[type="checkbox"]{
        width: 28px;
        height: 28px;
        margin: 0 18.5px;
        
    }
    .comentarios{
        justify-content: space-between;
        column-gap: 10px;
        width: 90%;
    }
    .comentarios textarea{
        width: 57%;
    }
    .td-check{
        padding-top: 0;
    }
    input[type="checkbox"]::before {
        width: 14.5px;
        height: 14.5px;
        top: 2px;
        left: 2px;
    }
    .check-service label{
        width: 110px;
        font-size: 16px;
    }
    .check-service input{
        margin: 0 10px;
    }
    .label-w{
        width: 179px;
    }
}
@media (max-width: 800px){
    .form-group{
        width: 90%;
    }
    .two-columns{
        flex-direction: column ;
    }
    .two-columns div{
        width: 100%;
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .two-columns label{
        width: 170px !important;
    }
    .two-columns input{
        width: 75%
    };
}
@media (max-width: 700px){
    .head-register img {
        width: 50%;
    }
    .head-register h2 {
        font-size: 4vw;
    }
    form{
        padding: 0;
    }
    .learn-services .check-service {
        width: 47%;
    }
    .back-gray h2 {
        font-size: 1rem;
    }
    tr{
        text-align: center;
    }
    td{
        font-size: 14.7px;
        padding-right: 20px;
    }
    td img {
        width: 40px;
    }
    input[type="checkbox"] {
        margin: 0 1.5vw;
    }
    .comentarios{
        flex-direction: column;
    }
    .comentarios textarea {
        width: 95%;
    }
    button {
        width: 85%;
    }

}
