*{
  font-family: "Barlow", sans-serif;
}

.fondo{
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

.mascara-fondo{
    background-color: rgba(0, 0, 0, .7);
    height: 100vh;
    padding-left: 30px;
    position: relative;
}

.titulo{
  padding-top: 20px;
  font-size: 3rem;
  padding-bottom: 50px;
}

.barlow-thin-italic{
    font-style: italic;
    font-weight: 300;
  }

  .formulario{
    width: 300px;
  }

  .tipo-login{
    background-color: rgb(235, 235, 235);
    transition: all .4s;
    box-shadow: 0px 0px 0px 0px #FFF, 0px 0px 0px 0px #000;
    cursor: pointer;
    padding: 15px 25px;
    font-weight: bold;
    font-size: .8rem;
    user-select: none;
  }

  .tipo-login:hover{
    box-shadow: 0px 0px 0px 2px #FFFFFF, 0px 0px 0px 4px #0000003a;
    background-color: rgb(35, 35, 35);
    color: white;
  }

  #tipo-activo{
    font-size: .9rem;
    font-weight: bold;
    color: rgb(146, 146, 146);
    transition: all .3s;
  }

  .texto-gris{
    color: rgb(146, 146, 146);
  }

  .etiqueta{
    font-size: .7rem;
  }

  .btn-login{
    text-align: center;
    width: 100%;
    background-color: rgb(35, 35, 35);
    border-radius: 15px;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all .4s;
    box-shadow: 0px 0px 0px 0px #FFF, 0px 0px 0px 0px #000;
  }

  .btn-login:hover{
    box-shadow: 0px 0px 0px 2px #FFFFFF, 0px 0px 0px 4px #000000;
  }

  #error-login{
    font-size: 1rem;
    font-weight: bold;
    transition: all .4s;
    opacity: 0;
  }

  /* PUNTOS DE QUIEBRE */
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .titulo{
      font-size: 2.5rem;
    }
  }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .titulo{
      font-size: 2.2rem;
    }
  }
  @media (min-width: 576px) and (max-width: 767.98px) {
    .mascara-fondo{
        padding-left: 10px;
    }
    .titulo{
      font-size: 1.9rem;
    }
  }
  @media (max-width: 575.98px) {
    .mascara-fondo{
        padding-left: 10px;
    }
    .titulo{
      font-size: 1.7rem;
    }
  }