.login-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(24, 200, 148, 0.12), transparent 34%),
    #f6faf8;
}

.login-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: var(--deep);
  box-shadow: 0 10px 28px rgba(4, 61, 48, 0.2);
}

.back-link {
  color: #d9fff1;
  font-weight: 800;
  text-decoration: none;
}

.login-main {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  padding: 28px 18px;
}

.login-card {
  display: grid;
  width: min(420px, 100%);
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login-card h1 {
  margin: 0;
  font-size: 32px;
}

.login-card input {
  height: 46px;
}

.login-message {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.login-message a {
  color: var(--mint-dark);
  font-weight: 800;
}
