/* Page-specific presentation for forgot-password.html. Keep behavior in assets/js. */
* {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  color: #fff;
  background: radial-gradient(circle at 10% 10%, #213784 0, transparent 28%), #07080f;
  font-family: Manrope, Arial, sans-serif;
}
.card {
  width: min(100%, 460px);
  padding: 37px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #10121ce8;
}
.brand {
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.eyebrow {
  margin-top: 42px;
  color: #b8ffda;
  font:
    11px 'DM Mono',
    monospace;
  letter-spacing: 0.13em;
}
h1 {
  margin: 12px 0 10px;
  font-size: 37px;
  letter-spacing: -0.07em;
}
.copy {
  color: #aab0bd;
  font-size: 14px;
  line-height: 1.65;
}
label {
  display: block;
  margin: 25px 0 8px;
  font-size: 12px;
  font-weight: 700;
}
input {
  width: 100%;
  padding: 14px;
  border: 1px solid #343947;
  border-radius: 10px;
  color: #fff;
  background: #090b12;
  font: 14px Manrope;
}
.button {
  width: 100%;
  margin-top: 15px;
  padding: 14px;
  border: 0;
  border-radius: 10px;
  color: #082018;
  background: #b8ffda;
  font: 800 14px Manrope;
  cursor: pointer;
}
.success {
  display: none;
  margin-top: 16px;
  color: #b8ffda;
  font-size: 13px;
  line-height: 1.55;
}
.success.error {
  color: #ffb4b4;
}
.back {
  display: inline-block;
  margin-top: 26px;
  color: #b8ffda;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}
@media (max-width: 480px) {
  body {
    display: block;
    padding: 14px;
  }
  .card {
    margin: 16px auto;
    padding: 28px 22px;
    border-radius: 18px;
  }
  h1 {
    font-size: 34px;
  }
  input,
  .button {
    min-height: 48px;
  }
  input {
    font-size: 16px;
  }
}
