* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    font-family: sans-serif;
    color: white;
  }
  body {
    background-color: black;
  }
  .redes-sociales {
    height: 45px;
    background-color: black;
  }
  .redes-sociales img {
    width: 30px;
    float: right;
    margin: 5px 7px 5px 7px;
  }
  .redes-sociales img {
    transition: 1s;
  }
  .redes-sociales img:hover {
    scale: 120%;
  }
  /* ----------------------------------------------------------------------- */
  .head-list ul {
    background-color: red;
    padding: 5px 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-content: center;
  }
  .head-list ul li {
    float: left;
    margin: auto;
  }
  .head-list ul .imagen-hidden {
    display: none;
  }
  .head-list ul li a:hover {
    color: black;
    font-size: 102%;
  }
  .head-list ul li a {
    color: white;
    font-size: 1em;
    transition: 0.5s;
  }
  .head-list .active {
    color: black;
    font-size: 105%;
  }

  .container{
    display: flex;
    flex-direction: column;
    width: 80%;
    background-color: red;
    align-items: center;
    margin: auto;
    margin-top: 100px;
  }
  .container img{
    width: 20%;
    margin-bottom: 40px;
    margin-top: 20px;
  }
  .container p{
    width: 50%;
    margin-bottom: 40px;
  }
  .container input{
    margin-bottom: 40px;
    color: black;
    width: 50%;
    height: 40px;
    font-size: 1.3em;
  }
  .container .btn-contrasenia{
    font-size: 1.1em;
    transition: 1s;
    background-color: black;
    color: white;
    border: none;
    border-radius: 20px;
  }
  .container .btn-contrasenia:hover{
    cursor: pointer;
    scale: 105%;
    background-color: white;
    color: red;
  }
  .container form{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }



  .enviar form{
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: auto;
    margin-top: 100px;
  }
  .enviar form input{
    margin-bottom: 30px;
    height: 30px;
    color: black;
  }
  .enviar form .btn-enviar{
    height: 40px;
    border-radius: 40px;
    background-color: red;
    border: none;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    transition: 1s;
  }
  .enviar form .btn-enviar:hover{
    scale: 105%;
  }




  @media (max-width: 768px) {
    .head-list ul .imagen-hidden-uno {
      display: none;
    }
    .head-list ul .imagen-hidden {
      display: contents;
    }
    .head-list ul li img {
      width: 50px;
      margin-left: 10px;
    }
    .head-list ul li a {
      font-size: 0.5em;
    }
    .head-list ul li a:hover {
      font-size: 0.7em;
    }
    .head-list .active {
      color: black;
      font-size: 0.7em;
    }
    .container{
      margin-bottom: 50px;
    }
}