.login-body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top left, rgba(50, 205, 120, .18), transparent 36%), #071610;
}
.login-shell {
  width: min(420px, calc(100vw - 32px));
  margin-left: 0;
  padding: 0;
}
.login-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  padding: 34px;
}
.login-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f0b429, #e4a31e);
  color: white;
  font-weight: 800;
  margin-bottom: 18px;
}
.login-card h1 {
  margin: 0;
  color: #0b2b1b;
}
.login-card p {
  margin: 8px 0 24px;
  color: #597265;
}
.login-form {
  display: grid;
  gap: 16px;
}
.login-form label {
  display: grid;
  gap: 8px;
  color: #173b28;
  font-weight: 700;
}
.login-form input {
  height: 46px;
  border: 1px solid #cfe2d6;
  border-radius: 14px;
  padding: 0 14px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}
.password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.password-wrap input {
  padding-right: 42px;
}
.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #6b7280;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.password-toggle:hover {
  background: transparent;
  color: #10b981;
}
.password-toggle:focus {
  outline: none;
  color: #10b981;
}
.login-form button:not(.password-toggle) {
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #15b85d;
  color: white;
  font-weight: 800;
  cursor: pointer;
}
.login-form button:not(.password-toggle):disabled {
  opacity: .7;
  cursor: wait;
}
.login-error {
  min-height: 20px;
  color: #b42318;
  font-weight: 700;
}
