*, *:before, *:after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  background-image: url('bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
    font-family: 'Nunito', sans-serif !important;
}

a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  transition: .5s ease;
}

a:hover {
  color: #ffffff;
}

@media only screen and (min-width:320px) {
  .form {
    padding: 40px;
    max-width: 800px;
    margin: 500px auto;
    left: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
    backdrop-filter: blur(10px);
  }

  .form .logo img {
    width: 500px;
    margin-left: 100px;
  }

  h1 {
    text-align: center;
    color:#ffffff;
    font-weight: bold;
    margin: 0 0 40px;
    font-size: 50px;
  }
  
  label {
    position: absolute;
    transform: translateY(6px);
    left: 13px;
    color: rgb(0, 0, 0);
    transition: all 0.25s ease;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
    font-size: 22px;
  }
  
  label .req {
    margin: 2px;
    color: rgb(0, 126, 176);
  }
  
  label.active {
    transform: translateY(-20px);
    left: 2px;
    font-size: 14px;
  }
  
  label.highlight {
    color: #ffffff;
  }
  
  input, textarea {
    font-size: 40px;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    background: rgb(255, 255, 255);
    border: 1px solid #a0b3b0;
    color: rgb(0, 0, 0);
    border-radius: 0;
    transition: border-color .25s ease, box-shadow .25s ease;
  }
  
  input[type=submit] {
    cursor: pointer;
    font-size: 50px;
  }
  
  input:focus, textarea:focus {
    outline: 0;
    border-color: rgb(0, 126, 176);
  }
  
  a {
    font-size: 30px;
  }

  textarea {
    border: 2px solid #a0b3b0;
    resize: vertical;
  }
  
  .field-wrap {
    position: relative;
    margin-bottom: 40px;
  }
  
  .button {
    border: 0;
    outline: none;
    border-radius: 0;
    padding: 15px 0;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    background: rgb(0, 126, 176);
    color: #ffffff;
    transition: all 0.5s ease;
    -webkit-appearance: none;
  }
  
  .button:hover, .button:focus {
    background: #d09500;
  }
  
  .button-block {
    display: block;
    width: 100%;
  }
  
  .forgot {
    color: black; 
    margin-top: -25px;
    text-align: right;
    transition: all 0.25s ease
  }
  
  .logo img {
    background-color: white;
    border-radius: 30px;
    border: solid 4px rgb(0, 126, 176);
    width: 300px;
    margin-left: 110px;
    margin-bottom: 20px;
    padding: 10px;
  }
}

@media only screen and (min-width: 1024px) {
  .form {
    max-width: 600px;
    margin: 130px auto;
  }

  .form .logo img {
    width: 300px;
    margin-left: 110px;
  }

  h1 {
    font-size: 32px;
  }

  input, textarea {
    font-size: 22px;
  }

  a {
    font-size: 16px;
  }
  
  input[type=submit] {
    font-size: 32px;
  }
}