* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Abel", sans-serif;
    scroll-behavior: smooth;
  }
  .logo img{
     height:100px;
  }
  .wrapper {
    width: auto;
    height: 100vh;
    background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../media/Fondos/fondo.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: opacity(80%);
    background-attachment: fixed;
  }
  .nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.521);
    padding:0 50px;
  }
  .nav .box_collapse {
    display: flex;
    justify-content: space-between;
  }
  .nav .config {
    display: none;
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 80px;
  }
  .menu ul {
    list-style: none;
    /* display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center; */
  }
  .menu ul li {
    display: inline-block;
  }
  .menu ul li a {
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: white;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 10px 15px;
    margin: 0 5px;
    transition: 0.5s ease;
  }
  .menu ul li a:hover {
    border-color: white;
  }
  .menu ul li:nth-child(6) a {
    color: #60a9ff;
    border: 1px solid #60a9ff;
  }
  .menu ul li:nth-child(6) a:hover {
    color: black;
    background-color: #60a9ff;
  }
  header {
      margin-top: 50px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  header form {
      padding: 30px;
      background: rgba(255,255,255,0.8);
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  header form h2 {
      margin: 40px;
      color: #000;
      font-size: 40px;
  }
  header form input {
      border-radius: 10px;
      border: none;
      box-shadow: 2px 2px 10px gray;
      width: 100%;
      font-size: 20px;
      padding: 10px;
      margin: 10px;
  }
  header form .iniciar {
      background: #1e4572;
      color: #fff;
      font-weight: bold;
  }
  header form .iniciar:hover {
      background: rgb(85, 143, 218);
      color: #fff;
  }
  header form a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    margin: 10px auto 10px 10px;
    padding: 10px;
}
header form a:hover {
    color: #1e4572;
}
  @media (max-width: 992px){
    .nav {
      padding: 20px;
      background: #fff;
      width: 100%;
    }
    .nav .config {
      display: block;
    }
    .nav .config button {
      background: none;
      border: none;
    }
    .nav .config button img {
      width: 20px;
    }
    .nav .box_collapse {
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 20px;
    }
    .menu ul li {
      display: block;
    }
    .menu ul li a {
      color: #000;
    }
    .menu ul li a:hover {
      border-color: white;
    }
  }