@charset "utf-8";

.container {
  max-width: 100%;
  padding: 100px 30%;
  text-align: center;
}

.container h3 {
  font-size: 2vw;
}

.container p {
  font-size: 1.2vw;
  line-height: 1.5em;
  margin-top: 50px;
  font-weight: 500;
}

.container form {
  width: 100%;
  margin-top: 10px;
}

.container form #id_email {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: solid 1px #9F9F9F;
  padding: 0 0 0 15px;
  font-size: 1.2vw;
  box-sizing: border-box;
  outline: none;
}

.container form #password-reset-form {
  width: 100%;
  margin-top: 50px;
  height: 40px;
  background: linear-gradient(to right, #e0dfff 0%, #ffe5fe 100%);
  border-radius: 30px;
  border: solid 1px #E2E2E2;
  font-size: 1.2vw;
  color: #585858;
  font-weight: 500;
}

.container .toppage-link {
  margin-top: 50px;
  width: 100%;
  text-align: right;
  font-size: 1.2vw;
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .container {
    padding: 100px 25%;
  }
  
  .container h3 {
    font-size: 2.5vw;
  }
  
  .container p {
    font-size: 1.5vw;
    line-height: 1.5em;
    margin-top: 50px;
  }
  
  .container form {
    margin-top: 8px;
  }
  
  .container form #id_email {
    height: 40px;
    padding: 0 0 0 15px;
    font-size: 1.5vw;
  }
  
  .container form #password-reset-form {
    margin-top: 50px;
    height: 40px;
    border-radius: 30px;
    font-size: 1.5vw;
  }
  
  .container .toppage-link {
    margin-top: 50px;
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 768px) and (min-width: 480px) {
  .container {
    padding: 120px 20%;
  }
  
  .container h3 {
    font-size: 3vw;
  }
  
  .container p {
    font-size: 2vw;
    line-height: 1.5em;
    margin-top: 30px;
    white-space: nowrap;
  }
  
  .container form {
    margin-top: 6px;
  }
  
  .container form #id_email {
    height: 40px;
    padding: 0 0 0 15px;
    font-size: 2vw;
  }
  
  .container form #password-reset-form {
    margin-top: 50px;
    height: 40px;
    border-radius: 30px;
    font-size: 2vw;
  }
  
  .container .toppage-link {
    margin-top: 50px;
    font-size: 2vw;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 150px 10%;
  }
  
  .container h3 {
    font-size: 4vw;
  }
  
  .container p {
    font-size: 2.5vw;
    line-height: 1.5em;
    margin-top: 25px;
    white-space: nowrap;
  }
  
  .container form {
    margin-top: 5px;
  }
  
  .container form #id_email {
    height: 40px;
    padding: 0 0 0 12px;
    font-size: 3vw;
  }
  
  .container form #password-reset-form {
    margin-top: 30px;
    height: 40px;
    border-radius: 30px;
    font-size: 3vw;
  }
  
  .container .toppage-link {
    margin-top: 30px;
    font-size: 3vw;
  }
}