:root {
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: #171715;
  background: #ecece8;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(
    circle at 25% 10%,
    #fff 0,
    #f2f2ee 42%,
    #deded8 100%
  );
}
.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.login-card {
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d8d8d2;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(24px);
}
.brand-row {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-row img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}
.brand-row small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #777771;
  font-size: 12px;
  font-weight: 600;
}
.brand-row h1 {
  font-size: 26px;
  letter-spacing: -0.03em;
  margin: 2px 0 0;
}
.brand-row > span {
  margin-left: auto;
  background: #efefeb;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  color: #6e6e68;
}
.intro {
  padding: 34px 0 20px;
}
.intro h2 {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.intro p {
  margin: 0;
  color: #686863;
  line-height: 1.5;
  font-size: 14px;
}
form {
  display: grid;
  gap: 13px;
}
label {
  display: grid;
  gap: 7px;
}
label span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #696963;
}
input,
select {
  width: 100%;
  border: 1px solid #d5d5cf;
  border-radius: 12px;
  padding: 12px 13px;
  background: #fff;
  font: inherit;
  outline: none;
}
input:focus,
select:focus {
  border-color: #6e6e73;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.14);
}
button {
  border: 0;
  border-radius: 12px;
  background: #1b1b19;
  color: #fff;
  padding: 13px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-top: 4px;
}
.error {
  margin: 0;
  background: #fae9e6;
  color: #8f3027;
  border-radius: 10px;
  padding: 10px;
  font-size: 12px;
}
footer {
  display: grid;
  gap: 4px;
  border-top: 1px solid #e8e8e2;
  margin-top: 24px;
  padding-top: 16px;
  color: #74746e;
  font-size: 12px;
  line-height: 1.45;
}
footer b {
  color: #30302d;
}
@media (max-width: 560px) {
  .login-card {
    border-radius: 20px;
    padding: 20px;
  }
  .intro h2 {
    font-size: 31px;
  }
}
.auth-tabs{display:grid;grid-template-columns:1fr 1fr;gap:4px;background:#efefeb;border-radius:13px;padding:4px;margin:0 0 16px}.auth-tabs button{margin:0;background:transparent;color:#666;padding:9px 10px}.auth-tabs button.active{background:#fff;color:#1b1b19;box-shadow:0 1px 4px rgba(0,0,0,.08)}.auth-fields{display:grid;gap:13px}.auth-fields[hidden]{display:none}
