:root {
  color-scheme: light;
  --ink: #12211e;
  --muted: #647672;
  --line: #c7d9d4;
  --green: #00796b;
  --paper: rgba(255, 255, 255, .9);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(135deg, #fff8ea 0%, #f4fbf8 46%, #e8f6f2 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 121, 107, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 121, 107, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .72), transparent 82%);
}

main {
  position: relative;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(20, 49, 45, .16);
  backdrop-filter: blur(18px);
}

.hero {
  min-height: 520px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #00796b 0%, #155a52 58%, #f08a24 140%);
  color: #fff;
}

.mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  font-weight: 950;
}

.hero h1 {
  margin: 18px 0 12px;
  font-size: 46px;
  line-height: .98;
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.58;
}

.hero-art {
  position: relative;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 22px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .18);
}

.hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 43, 38, .45) 100%);
  pointer-events: none;
}

.status-card {
  margin-top: 36px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 18px;
  background: rgba(255, 255, 255, .13);
}

.status-card strong,
.status-card span {
  display: block;
}

.status-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.form-side {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: 0;
}

.intro {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.55;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 850;
}

input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #b9ccc7;
  border-radius: 12px;
  padding: 0 14px;
  background: #fbfffd;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 121, 107, .12);
}

button {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #00796b, #069b83);
  color: white;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 121, 107, .24);
}

button:hover {
  filter: brightness(1.03);
}

.error {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #f0b4a8;
  border-radius: 12px;
  background: #fff2ef;
  color: #963325;
  font-weight: 850;
}

small {
  display: block;
  margin-top: 16px;
  color: #6d817d;
  line-height: 1.45;
}

@media (max-width: 760px) {
  main {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 260px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .form-side {
    padding: 28px;
  }
}
