.myForm {
    display: grid;
    grid-template-columns: [labels] auto [controls] 1fr;
    grid-auto-flow: row;
    grid-gap: .8em;
    padding: 1.2em;
  }
  .myFormGrid{
    display: grid;
    grid-template-columns:5% 95%;
  }
    .myFormGrid2{
    display: grid;

    grid-template-columns: [labels] auto [controls] 1fr;
    gap: 10px;

  }
  .fields{
    color: black;
    font-size: 1.2rem;
  }
  .myFormGrid2 > label  {
    grid-column: labels;
    grid-row: auto;
    font-size: 1.5rem;
  }
  .myFormGrid2 > input,
  .myFormGrid2 > textarea,
  .myFormGrid2 > button {
    grid-column: controls;
    grid-row: auto;

    padding: 1em;
  }

  .registro__politica_de-privacidad{
    display: unset;

  }

  .cuerpo__textos-formulario{
    font-size: 1.5rem;
  }

  .boton{
    background-color:  var(--naranja);
    border-radius: 25px;
    height: 50px;
    font-size: 1.5rem;
    color: var(--blanco);
  }
  .boton_disabled{
    background-color: var(--gris_claro);
    color: var(--gris_oscuro);
    border-radius: 25px;
    height: 50px;
  }
  #chk_blendiberia {
    width: 15px;
    margin-bottom: 20px;
  }
  #chk_talleres {
    width: 15px;
    margin-bottom: 16px;
  }
  .chk_aeub {
    width: 15px;
    margin-bottom: 16px;
  }
  #chk_politica{
    width: 15px;
    margin-bottom: 16px;
  }
  .texto_chk{
    margin-bottom: 16px;
    font-size: 1.5rem;
  }
  .texto_chk >a {
    color: var(--blanco);
  }

  .texto_chk >a:visited {

    color: var(--gris_claro);
  }

  .texto_chk >a:hover {

    color: var(--naranja);
  }
  .user_registro__imagen {
    width: 100px;

    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
  .user_registro__regreso {
    width: 200px;
    height: 3rem;
    font-family: "Roboto-Regular";
    font-size: 1rem;
    background-color: var(--naranja);
    color:var(--blanco);
    margin: 0 auto;
    border-radius: 10px;
    padding-left: 3rem;
    padding-top: 0.7rem;
  }
  .user_registro__titulo{
    font-family: "Roboto-Regular";
    font-size: 2rem;
    text-align: center;

  }
