:root {
  --bg: #08090b;
  --card: #12151b;
  --text: #f3f5f7;
  --muted: #9aa3b0;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #3ecfbf;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

.shell {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 8px 0 0;
  letter-spacing: -0.04em;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

.card {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
}

.top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.top-actions {
  display: flex;
  gap: 8px;
}

label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0b0d11;
  color: var(--text);
  font: inherit;
}

.password-field {
  display: flex;
  gap: 8px;
  align-items: center;
}

.password-field input {
  flex: 1;
}

.show-pass {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0b0d11;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.btn,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.btn {
  margin-top: 20px;
  border: 0;
  background: var(--accent);
  color: #051210;
}

.ghost {
  border: 1px solid var(--line);
  background: transparent;
}

.error,
.ok {
  margin-top: 12px;
  font-size: 14px;
}

.error {
  color: #f87171;
}

.ok {
  color: var(--accent);
}

@media (max-width: 700px) {
  .top {
    flex-direction: column;
  }
}
