.contact_form
{
    display:flex;
    flex-direction:column;
    width:100%;
    justify-content: left;
    gap: 40px;
}


.contact-form-row
{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.gap6percent
{
    gap: 6%;
}

.gap1percent
{
    gap:1%;
}

.form-section
{
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 1.4rem;
    font-weight: bold;
    gap: 5px;
}


input
{
    width: 100%;
    height: 2.4rem;
    font-size: 1.2rem;
    border-radius: 7px;
}


input.first
{
    width: 10%;
}

input.second
{
    width: 15%;
}

input[type=submit]
{
    width: 40%;
    color: white;
    background-color: #117df2;
}

label
{
    display: block;
}

input[type=checkbox]
{
    max-height: 20px;
    max-width: 20px;
}

.inline_label
{
    display: block;
    font-size: 1rem;
}

textarea[name=mensaje]
{
   width:100%;
   font-size: 1rem;
}


