
body {
    font-family: "Helvetica", Sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.card-gris {
    border-radius: 30px; /* Bordes redondeados */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Sombra */
    background-color: #f2f2f2; /* Fondo gris */
    padding: 40px 90px 20px 90px;
}

.comentario_input{
    color: #878787;
    font-weight: 400;
}

.responsive-form {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
}

.form-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-column {
    flex: 1;
    margin-right: 10px;
}

.form-column2 {
    flex: 1;
    margin-right: 10px;
}

.form-column:last-child {
    margin-right: 0;
}

label {
    display: block;
    margin-bottom: 5px;
    padding-bottom: 4px;
    font-weight: 600;
    color: #19305A;
}

.texto_simple{
    display: inline-block;
    margin-bottom: 2px;
    padding-bottom: 5px;
    font-weight: 400;
    color: black;
}

input,
select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 10px;
    background-color: #ffffff;
    color: #363636;

    max-width: 100%;
    border: 1px solid #D3D3D3;
    color: #1f2124;
    vertical-align: middle;
    flex-grow: 1;

    border-radius: 3px;
    padding: 0.5rem 1rem;
    transition: all .3s;
}

.checkbox-label {
    display: flex;
    align-items: center;
}

.checkbox-label input {
    margin-right: 5px;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #19305A;
}

.same-line{
    width: auto;
    display: inline;
}

.required {
    color: red;
    margin-left: 2px;
}

#enviarBtn{
    background-color: #F5C300;
    color: #ffffff;
    flex-basis: 100%;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all .3s;
    min-width: 35%;
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: #E6A638;
}

.input_autorizacion{
    display: inline-block;
    margin-bottom: 4px;
    min-width: 60%;
    width: auto;
}

.input_autorizacion_small{
    display: inline-block;
    width: fit-content;
    margin-bottom: 4px;
}


[type=checkbox] {
    width: 20px;
    display: inline;
    margin-bottom: 0;
}


.label_checkbox{
    display:inline;
}

p {
    text-align: justify;
}


img{
    height: 250px;
}




@media screen and (max-width: 600px) {

    img{
        height: 200px;
    }
    
    .form-column {
        width: 100%;
        margin-right: 0;
        display: block;
        margin-bottom: 15px;
        flex: none;
        padding-left: 0!important;
        padding-right: 0!important;
    }
    
    .form-column2 {
        margin-bottom: 15px;
    }
    
    .form-row {
        margin-bottom: 0px;
    }

    .input_autorizacion{
        width: 100%;
        display: block;
    }
 
    .input_autorizacion_small{
        width: 100%;
        display: block;
    }
    
    .card-gris {
        padding: 30px 30px 10px 30px;
    }

    #enviarBtn{
        width: 100%;
    }

}
