.wpcf7-form p span select {
    width: 100%!important;
    border: 1px solid #003A5D;
    border-radius: 3px;
    font-family: Lato, sans-serif;
    padding: 4px;
    margin-bottom: 10px;
}

.wpcf7-form p label span input {
    width: 100%!important;
}
.wpcf7-form-control-wrap input {
    width: 100%!important;
}

.wpcf7-form p {
    text-align: left;
}

.wpcf7-form-control-wrap textarea,input {
    border: 1px solid #003A5D;
    border-radius: 3px;
    font-family: Lato, sans-serif;
    padding: 4px;
    width: 100%;
    margin-bottom: 10px;
    outline: none;
}

.wpcf7-form-control-wrap textarea{
    height: 7rem;
}

.reset p input{
    cursor: pointer;
    background-color: white;
    color: #003A5D;
    border-radius: 10px;
    outline: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.reset p input:hover {
    color: white;
    background-color: #003A5D;
}

.submit p input{
    cursor: pointer;
    background-color: #003A5D;
    color: white;
    border-radius: 10px;
    outline: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.screen-reader-response {
    display: none;
}

.reset p input{
    border-radius: 10px;
}

.wpcf7-form-control-wrap span span {
    display: flex;
    font-size: 12px;
}

.checkbox{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.wpcf7-form-control-wrap span span input{
    padding: 0!important;
    max-width: 15px!important;
    margin: auto 10px auto 0!important;
}

.wpcf7-response-output, .wpcf7-spinner {
  display: none!important;
}


@media (min-width: 720px) {
    .content-submit {
        display: flex;
        gap: 0.5rem;
    }
    .submit{
        flex-basis: 50%;
    }
    .reset{
        flex-basis: 50%;
    }

    .container-input {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

}

