.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.simple-header h1 {
  margin: 0;
  font-size: 22px;
}

.simple-header .language-menu {
  justify-self: end;
}

.form-page-title {
  margin: 28px 0 24px;
}

.form-page-title h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.form-page-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.stack-form {
  display: grid;
  gap: 16px;
}

.stack-form label {
  display: grid;
  gap: 8px;
  color: #666666;
  font-size: 13px;
}

.stack-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f7f7;
  color: var(--text);
  padding: 0 14px;
}

.auth-inline-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.secondary-inline-button {
  min-width: 112px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  padding: 0 14px;
  font-weight: 700;
}

.secondary-inline-button:disabled {
  opacity: 0.6;
}

.form-select-trigger {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f7f7;
  padding: 0 14px;
}

.form-select-trigger b {
  font-weight: 700;
}

.form-amount-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.form-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #f7f7f7;
}

.form-card code {
  display: block;
  padding: 13px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--green);
  overflow-wrap: anywhere;
}

.wide-button {
  width: 100%;
  margin-top: 10px;
}

.auth-switch {
  margin-top: 20px;
  color: var(--muted);
  text-align: center;
}

.auth-switch a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.form-status {
  margin-top: 14px;
  color: var(--green);
  font-size: 13px;
  text-align: center;
}

.form-status[data-type="error"] {
  color: #e84d5b;
}

.form-status[data-type="success"] {
  color: var(--green);
}
