.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 90px 20px 40px;
  background:
    radial-gradient(circle at 15% 10%, rgba(40, 96, 232, .15), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(40, 96, 232, .10), transparent 25%),
    var(--background);
}

.auth-brand {
  position: absolute;
  top: 25px;
  left: 32px;
}

.auth-card {
  width: min(450px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  margin-bottom: 10px;
  font-size: 36px;
  letter-spacing: -.04em;
}

.auth-card > p {
  margin-bottom: 25px;
  color: var(--muted);
  line-height: 1.55;
}

.auth-form {
  display: grid;
  gap: 17px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 750;
}

.auth-form input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #ced7e5;
  border-radius: 11px;
  outline: none;
}

.auth-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(40, 96, 232, .11);
}

.auth-form .button {
  width: 100%;
  min-height: 50px;
  margin-top: 4px;
}

.auth-footer {
  margin-top: 23px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.auth-footer a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}
