* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, "Malgun Gothic", sans-serif;
  background: #0d1b2a;
  color: #ffffff;
  margin: 0;
  padding: 20px;
}

.wrap, .card {
  max-width: 460px;
  margin: 0 auto;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.card h1 {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
  text-align: center;
}

p.role {
  color: #8fa3b8;
  margin-top: 0;
  margin-bottom: 2rem;
  line-height: 1.5;
  text-align: center;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

a.link-btn, button, input[type="submit"] {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: #16324a;
  border: none;
  border-radius: 3px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

a.link-btn:hover, button:hover {
  background: #faf6ec;
  color: #111111;
}

.accent {
  color: #8a6d3b;
}

label {
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
  color: #8fa3b8;
  font-size: 0.9rem;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  border: none;
  border-radius: 3px;
  color: #111111;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button:disabled {
  background: #ccc;
  border-color: #ccc;
  color: #666;
}

.msg {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 3px;
  font-size: 0.9rem;
  display: none;
}
.msg.ok { background: #e6f6ea; color: #1a7a34; display: block; }
.msg.err { background: #fdeceb; color: #b3251a; display: block; }

a.back {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #8fa3b8;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.empty {
  color: #8fa3b8;
  text-align: center;
  margin-top: 40px;
}

.essay {
  background: #16324a;
  border: none;
  border-radius: 6px;
  padding: 20px 22px;
  margin-bottom: 20px;
}
.essay h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: normal;
}
.essay .content p {
  margin: 0 0 1.3em;
  line-height: 2.1;
  font-size: 1rem;
}
.essay .content p:last-child {
  margin-bottom: 0;
}
.essay .content .blank-line {
  height: 1.3em;
}
