.container {
    justify-content: center;
    padding: 5.71rem 2.85rem 5.71rem
}

.label_tipo_email{
    margin-left: 25%;
}

.label_box{
    width: 50%;
    align-items: center;
}

.container_aviso {
  /* min-width: 21.42rem; */
  text-align: center;
  max-width: 35.71rem;
  margin: 20px auto;
  padding: 1.5rem;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  /* background-color: rgba(255, 255, 255, 0.80); */
  background-color: hwb(54 14% 5% / 0.425);
  position: relative;
}

.container_form {
    /* min-width: 21.42rem; */
    max-width: 35.71rem;
    margin: 0 auto;
    padding: 1.5rem;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    /* background-color: rgba(255, 255, 255, 0.80); */
    background-color: rgba(184, 182, 182, 0.363);
    position: relative;
}

.form_email_config{
    justify-content: center;
}

/* Estilo iOS */

.box_switch{
    margin-bottom: 15px;
}

.switch__container {
    /* margin: 30px auto; */
    width: 120px;
    margin-left: 100px;
  }
  
  .switch {
    visibility: hidden;
    position: absolute;
    margin-left: -9999px;
  }
  
  .switch + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
  }
  
  .switch--shadow + label {
    padding: 2px;
    width: 60px;
    height: 30px;
    background-color: #dddddd;
    border-radius: 60px;
  }
  .switch--shadow + label:before,
  .switch--shadow + label:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: "";
  }
  .switch--shadow + label:before {
    right: 1px;
    background-color: #f1f1f1;
    border-radius: 60px;
    transition: background 0.4s;
  }
  .switch--shadow + label:after {
    width: 32px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
  }
  .switch--shadow:checked + label:before {
    background-color: #8ce196;
  }
  .switch--shadow:checked + label:after {
    transform: translateX(30px);
  }