* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    font-family: Helvetica, sans-serif;
  }
  :root{
    --color-primary: #05b4cc;
    --color-sirocco: #647C7C;
    --color-slategray: #647C84;
    --color-apricot:#E58273;
    --color-texto1: #1E2640;
  }
  .bg-img {
    background: url(../img/fondo.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;

  }

.bg-img:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);

  }
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    text-align: center;
    padding: 60px 32px;
    width: 370px;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: -1px 4px 28px 0px rgba(0, 0, 0, 0.75);

  }
  .content header {
    color: white;
    font-size: 23px;
    font-weight: 600;
    margin: 0 0 35px 0;

  }
  .field {
    position: relative;
    height: 45px;
    width: 100%;
    display: flex;
    background: rgba(255, 255, 255, 0.94);
    margin-top: 20px;
  }
  .field span {
    color: #222;
    width: 40px;
    line-height: 45px;
  }
  .field input {
    height: 100%;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #222;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
  }
  .space {
    margin-top: 16px;
  }
  .show {
    position: absolute;
    right: 13px;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    display: none;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
  }
  .pass-key:valid ~ .show {
    display: block;
  }
  .pass {
    text-align: left;
    margin: 10px 0;
  }
  .pass a {
    color: white;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
  }
  .pass:hover a {
    text-decoration: underline;
  }
  .field input[type="submit"] {
    background: rgba(254,43,9,100);
    border: 1px solid #696969;
    color: white;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;

  }
  .field input[type="submit"]:hover {
    background:var(--color-primary);
  }
  .login {
    color: white;
    margin: 20px 0;
    font-family: "Poppins", sans-serif;
  }
  .derechos{
      display: block;
      margin-top: 25px;
      color: #fff;
      font-size: 12px;

  }

  @media (max-width: 400px){
    .content{
        width:300px;
    }
  }
