:root {
  color-scheme: light;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: #17202a;
  background: #f5f7fb;
}

body {
  margin: 0;
}

a {
  color: #1456cc;
  text-decoration: none;
}

.topbar {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #dfe5ef;
  display: flex;
  justify-content: space-between;
  padding: 14px 28px;
}

.brand {
  color: #17202a;
  font-weight: 700;
}

nav {
  align-items: center;
  display: flex;
  gap: 18px;
}

nav form {
  margin: 0;
}

.shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px;
}

.hero,
.panel,
.auth-box,
.legal {
  background: #ffffff;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 22px;
}

.auth-box {
  margin: 80px auto;
  max-width: 420px;
}

.grid.two {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  border: 1px solid #c7d0df;
  border-radius: 6px;
  font: inherit;
  padding: 10px 12px;
}

button,
.button {
  background: #1456cc;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  font-weight: 700;
  padding: 10px 14px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid #e7ecf3;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.metric {
  font-size: 34px;
  font-weight: 800;
  margin: 4px 0 16px;
}

.notice {
  background: #e8f2ff;
  border: 1px solid #b9d7ff;
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 12px;
}

.status {
  background: #edf1f7;
  border-radius: 999px;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.image-preview {
  margin-top: 18px;
}

.image-preview img {
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  display: block;
  max-width: min(420px, 100%);
}

@media (max-width: 720px) {
  .grid.two {
    grid-template-columns: 1fr;
  }

  .topbar,
  nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
