*{
    margin: 0;
}

body{
  display: grid;
  font-family:Arial, Helvetica, sans-serif;
  background: linear-gradient(to bottom,
  rgba(0, 0, 0, 0.6),
  rgba(151, 0, 0, 0.479),
  rgba(0, 0, 0, 0.45)
  ), url(../img/polmar.jpeg);
  background-attachment:fixed;
  background-position: center;
  background-size:cover;
  min-height: 100dvh;
  grid-template-rows: auto 1fr auto;
}
header{
  height: 120px;
}


.titulo {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: end;
    font-family: "Audiowide", sans-serif;
}

h1{
  color:azure;
  border-radius: 10px;
  font-size: 4rem;
  text-align: center;
  transition: 0.40s; 
}
h1:hover{
  font-size: 4.1 rem;
  color: rgb(0, 0, 0);
  text-shadow: 0px 0px 10px rgb(255, 255, 255);
  
}
main{
  display: flex;
  width: 100dvw;
  align-items: center;
  justify-content: end;
}

.padre {
    display: flex;
    width: 50dvw;
    height: 60vh;
    align-items: center;
    justify-content: center;
}

.form{
    display: flex;
    justify-content: center;
    width: 100%;
}
.login {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.2),
    rgba(101, 101, 101, 0.2),
    rgba(255, 255, 255, 0.2)
    );
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0px 0px 10px rgb(255, 255, 255);
    height: 55dvh;
    width: 22dvw;    
}
.img{
    height: 6vw;
    opacity: 0.6;
}

.form__group {
    display: block;
    position: relative;
    padding: 20px 0 0;
    width: 100%;
    max-width: 200px;
  }
  
  .form__field {
    font-family: inherit;
    width: 100%;
    border: none;
    border-bottom: 2px solid #f0f0f0;
    outline: 0;
    font-size: 17px;
    color: #fff;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
  }
  
  .form__field::placeholder {
    color: transparent;
  }
  
  .form__field:placeholder-shown ~ .form__label {
    font-size: 17px;
    cursor: text;
    top: 20px;
  }
  
  .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #f5f5f5;
    pointer-events: none;
  }
  
  .form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image: linear-gradient(to right, #116399, #38caef);
    border-image-slice: 1;
  }
  
  .form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #38caef;
    font-weight: 700;
  }
  
  /* reset input */
  .form__field:required, .form__field:invalid {
    box-shadow: none;
  }

  btn-send{
      display: block;
      justify-content: center;
      align-items: center;
  }
  button{
    display: block;
    color:azure;
    padding: 10px;
    background: rgb(186, 2, 2);
    text-align: center;
    border-radius: 20px 0px 20px 0px;
    border: none;
    margin-bottom: 8px;
    width: 205px;
    height: 40px;
    font-size:15px;
  }

  button:hover{
    color: rgb(150, 150, 150);
    box-shadow: 0px 0px 10px rgb(255, 255, 255);
    background: rgb(57, 50, 50);
}

  a.olvidado{
    color: aliceblue;
    margin-top: 25px;
    padding: 25px;
    text-shadow: 0px 0px 10px rgb(0, 0, 0);
    
  }
  footer{
    height: 100px;
  }
  footer .footer-title{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .titulo-final{
    text-align: center;
    font-size: 2rem;
    color: #9e9797;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }

  @media (max-width: 600px){
    .titulo {
      align-items: center;
  }
    h1{
      font-size: 2.5rem;
  }
    h1:hover{
      font-size: 2.6 rem;
  }
    .padre {
      width: 100dvw;
  }
    .login {
      background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.4),
      rgba(101, 101, 101, 0.4),
      rgba(255, 255, 255, 0.4)
      );
    width: 75dvw;    
    height: 60dvh;
  }

    .img{
        height: 20vw;
  }
    .titulo-final{
    font-size: 1.2rem;
  }



}
