*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body {
  font-family: "Source Code Pro", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  color: #000;
  background: #fff;
  line-height: 1.5;
  text-align: center;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px;
}

.brand__logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
}

.brand__title {
  margin: 10px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
  margin-top: auto;
}

.nav a {
  text-decoration: underline;
}
.nav a.active {
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 12px;
  text-align: left;
}

.download {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.download img {
  padding: 0 20px;
  width: auto;
  height: 40px;
}

.panel {
  max-width: 560px;
  margin: 0 auto;
  padding: 16px 18px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin: 30px;
  gap: 6px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 5px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.form-center {
  display: flex;
  justify-content: center;
}

.btn {
  font: inherit;
  align-self: center;
  padding: 10px 16px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  border-radius: 8px;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid blue;
  outline-offset: 2px;
}
.btn:hover {
  filter: brightness(0.97);
}

div.panel {
  text-align: center;
}