body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.22), rgba(255, 227, 79, 0.24)),
    url("images/app-assets/background-beach.png") center top / cover no-repeat fixed;
}

.legal-shell {
  width: min(100% - 32px, 880px);
  margin: 24px auto;
  background: rgba(255, 255, 255, 0.92);
  border: 5px solid #172033;
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(23, 32, 51, 0.16);
  overflow: hidden;
}

.legal-header {
  padding: 22px;
  text-align: center;
  background: rgba(56, 189, 248, 0.86);
  border-bottom: 4px solid #172033;
}

.legal-logo {
  width: min(82vw, 280px);
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.legal-content {
  padding: clamp(18px, 4vw, 34px);
  display: grid;
  gap: 18px;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
}

h2 {
  margin-top: 8px;
  font-size: 1.25rem;
}

p,
li {
  color: #40516d;
  line-height: 1.58;
  font-weight: 650;
}

ul {
  margin: 0;
  padding-left: 1.25rem;
}

a {
  color: #0369a1;
  font-weight: 850;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.legal-button,
button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  color: #172033;
  background: #ffe34f;
  border: 3px solid #172033;
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(23, 32, 51, 0.18);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.danger-zone {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 4px solid #991b1b;
  border-radius: 8px;
  background: rgba(254, 226, 226, 0.92);
}

.field {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

input {
  width: 100%;
  border: 3px solid #172033;
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  font-weight: 700;
  box-sizing: border-box;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  accent-color: #ffe34f;
}

.status {
  min-height: 22px;
  color: #40516d;
  font-weight: 800;
}

.status.error {
  color: #991b1b;
}
