.crearTarea {
    font-size: 1.5rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 5fr 7fr;

}

.container {
    margin-top: 0;
    padding: 2rem;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
}

#filtrar {
    margin-top: 2rem;
    margin-bottom: 0rem;
    font-size: 1.7rem;
    padding: 1rem;
}

form {
    margin: 0.5rem;
}

.form {
    display: flex;
    flex-direction: column;
}

.form2 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}


label {
     display: flex;
     justify-content: space-between;
     padding: 1rem;
     background-color:rgb(0, 0, 0, 0.5);
     margin: 0.5rem;
     border-radius: 1rem;
     align-items: center;
}

.label {
    width: 40%;
}

#form2label {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

#categoria { 
    margin: 3.9rem 0;
}

.submit { 
    background-color: rgb(0, 0, 0, 0);
    border: 5px solid #fff;
    color: white;
    font-size: 2rem;
    border-radius: 1rem;
    padding: 1rem 0;
    margin: 0.5rem;
}

input {
    color: #fff;
    font-family:  'Roboto', sans-serif;
    background-color: rgb(0, 0, 0, 0);
    border: 5px solid #fff;
    border-radius: 1rem;
}

select:focus{ outline: none;}

select {
    color: #fff;
    font-family:  'Roboto', sans-serif;
    background-color: rgb(0, 0, 0, 0);
    border: 5px solid #fff;
    border-radius: 1rem;
    appearance: none;
    padding: 0.4rem;
}

/*------------Boton-switch--------------*/

.checkboxDiv
{
  width:60px;
  height:12px;
  background: rgb(200,200,200) ;
  position:relative;
  border-radius:10px;
}

.checkboxDiv input{
    position:absolute;
    width:100%;
    height:100%;
    cursor:pointer;
    opacity:0;
    z-index:999;
  }

  .checkboxDiv .toggle{
    position:absolute;
    z-index:998;
    width:25px;
    height:25px;
    background: grey;
    top:-6px;
    box-shadow:0px 0px 3px rgb(50,50,50) inset;
    -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
      transition: all 0.2s ease;
    text-align:center;
    border-radius:100%;
    display:table-cell;
  }

  .checkboxDiv .toggle:before{
    content:"NO";
    color: #fff;
    vertical-align:middle;
  }

  .checkboxDiv input:checked ~ .toggle{
    margin-left:35px;
  }

  .checkboxDiv input:checked + .toggle:before{
    content:"SI";
  }

  /*---------Boton-Switch----------*/

  option {
    color: #FFF;
    font-family:  'Roboto', sans-serif;
    background-color: rgb(0, 0, 0, 0);
    border: 5px solid #fff;
    border-radius: 1rem;
    background-color: rgb(0, 0, 0, 0.5);
  }

#tasks {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0;
}

.tareaDiv {
    margin: 1rem;
    padding: 1rem;
    background-color: rgb(0, 0, 0, 0.5);
    border-radius: 1rem;
    font-size: 1.5rem;
    width: 22.1%;
    display: flex;
    flex-direction: column;
}

.tareaDiv input {
    padding: 0.8rem 0;
    margin-top: 0.3rem;
    font-size: 1.7rem;
}

fieldset {
    border: 5px solid #fff;
    border-radius: 1rem;
}

legend {
    margin: 0.5rem;
}

#tasks {
    font-size: 2rem;
    margin: 2rem;
    padding: 2rem;
}

.botonFiltro {
    font-size: 1.5rem;
    padding: 1rem;
    margin: 0.3rem;
    width: 10%;
    flex-wrap: wrap;
}