:root {
  color: #17211d;
  background: #f5f7f6;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  display: grid;
  margin: 0;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 15%, rgba(22, 122, 90, .12), transparent 34%),
    radial-gradient(circle at 85% 85%, rgba(244, 201, 93, .16), transparent 30%),
    #f5f7f6;
}

.login-card {
  width: min(420px, 100%);
  padding: 36px;
  border: 1px solid #e3e9e6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(26, 45, 37, .1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  border-radius: 11px;
  background: #167a5a;
}

h1 { margin: 0 0 8px; font-size: 28px; letter-spacing: -.03em; }
p { margin: 0 0 26px; color: #66736d; line-height: 1.5; }
form { display: grid; gap: 17px; }
label { color: #52605a; font-size: 12px; font-weight: 700; }
input {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: #17211d;
  border: 1px solid #d8e1dc;
  border-radius: 9px;
  background: #fff;
  font: inherit;
  outline: none;
}
input:focus { border-color: #167a5a; box-shadow: 0 0 0 3px rgba(22, 122, 90, .1); }
button {
  margin-top: 4px;
  padding: 12px 18px;
  color: #fff;
  border: 0;
  border-radius: 9px;
  background: #167a5a;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}
.error { margin-bottom: 18px; padding: 11px 13px; color: #8f3426; border-radius: 8px; background: #fde8e3; font-size: 13px; }
.privacy { margin: 22px 0 0; font-size: 11px; text-align: center; }
