.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 10vh - 25vh);
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vh, 20px);
  padding: clamp(30px, 4vh, 50px) clamp(20px, 5vw, 50px);

  width: min(450px, 95vw);
  border-radius: 5%;
  border: 1px solid #364153;
  background-color: #1e2838;
  overflow: hidden;
}

.reset_title {
  color: aliceblue;
  font-size: clamp(18px, 2vw, 26px);
  text-align: center;
}

.reset_subtitle {
  color: #99a1af;
  font-size: clamp(12px, 1vw, 15px);
  text-align: center;
  line-height: 1.5;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

form label {
  color: aliceblue;
  font-size: clamp(12px, 1vw, 15px);
}

#id_email {
  background-color: #16202f;
  border: 1px solid #364153;
  color: white;
  width: 100%;
  height: clamp(40px, 5.5vh, 50px);
  padding: 10px;
  border-radius: 13px;
  font-size: clamp(13px, 1vw, 15px);
}

#id_email:focus {
  outline: 2px solid #50a2ff;
}

form button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: clamp(40px, 5.5vh, 50px);
  border-radius: 10px;

  border: 1px solid #364153;
  background: linear-gradient(135deg, #5082ec, #1f52b8, #0b3ca8);

  color: aliceblue;
  font-family: sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  cursor: pointer;
}

form button:hover {
  box-shadow: 0px 4px 10px rgb(17, 85, 236);
}

.back_to_login {
  text-decoration: none;
  color: #50a2ff;
  font-size: clamp(11px, 0.9vw, 14px);
}

.back_to_login:hover {
  color: #93c5ff;
}

@media (max-width: 480px) {
  form {
    border-radius: 12px;
  }
}