:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #6b7280;
  --accent: #bb2929;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 32px auto;
  padding: 0 16px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent);
  display: inline-block;
}

.brand h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.nav a {
  margin-left: 12px;
  text-decoration: none;
  color: var(--fg);
}

.nav a:hover {
  text-decoration: underline;
}

.hero {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.hero h2 {
  font-size: 22px;
  margin: 0 0 8px 0;
}

.hero p {
  margin: 0 0 8px 0;
  color: var(--muted);
}

.badge {
  display: inline-block;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  border: 1px solid #e0e7ff;
  margin-bottom: 8px;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.button:hover {
  opacity: .95;
}

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 720px) {
  .grid {
	grid-template-columns: 1fr;
  }
}

.footer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.form {
  max-width: 440px;
  margin-top: 12px;
}

label {
  display: block;
  font-size: 14px;
  margin: 10px 0 6px;
}

input[type="email"],
input[type="password"],
input[type="text"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
}

textarea {
  min-height: 120px;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

ul {
  margin: 8px 0 0 18px;
}

.small {
  font-size: 12px;
  color: var(--muted);
}