.oe-page {
  background: #f4f7fa;
}

.oe-hero .wf-page-hero__inner {
  align-items: center;
}

.oe-recipient b {
  color: var(--wf-lime, #c8ff42);
  overflow-wrap: anywhere;
}

.oe-form-section {
  padding-top: clamp(2.75rem, 6vw, 5rem);
}

.oe-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(34rem, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.oe-prompt-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.oe-prompt-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(10, 35, 60, 0.12);
  border-radius: 0.8rem;
  background: #f7f9fb;
  color: #10243a;
}

.oe-prompt-list b {
  font-family: var(--wf-mono, monospace);
  color: #2476c7;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.oe-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(10, 35, 60, 0.16);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1.25rem 3rem rgba(16, 36, 58, 0.09);
}

.oe-form__header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(10, 35, 60, 0.1);
}

.oe-form__header h2 {
  margin: 0.2rem 0 0;
  color: #0b1d30;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.oe-field {
  min-width: 0;
}

.oe-field--full {
  grid-column: 1 / -1;
}

.oe-field label,
.oe-send legend {
  display: block;
  margin-bottom: 0.45rem;
  color: #17334f;
  font-size: 0.88rem;
  font-weight: 750;
}

.oe-field input,
.oe-field select,
.oe-field textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 3.15rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #b9c9d8;
  border-radius: 0.65rem;
  background: #fbfdff;
  color: #0b1d30;
  font: inherit;
  line-height: 1.45;
}

.oe-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.oe-field input:focus,
.oe-field select:focus,
.oe-field textarea:focus {
  outline: 3px solid rgba(61, 164, 255, 0.25);
  border-color: #2587df;
  background: #fff;
}

.oe-privacy {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid #9bdd16;
  border-radius: 0.35rem 0.65rem 0.65rem 0.35rem;
  background: #f5faeb;
  color: #24384b;
  font-size: 0.86rem;
  line-height: 1.55;
}

.oe-send {
  min-width: 0;
  margin: 0;
  padding: 1rem 0 0;
  border: 0;
  border-top: 1px solid rgba(10, 35, 60, 0.1);
}

.oe-send__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.oe-send__grid .wf-btn {
  width: 100%;
  justify-content: center;
  min-height: 3rem;
}

.oe-help {
  margin: 0.9rem 0 0;
  color: #536b82;
  font-size: 0.82rem;
  line-height: 1.55;
}

.oe-status {
  min-height: 1.45rem;
  margin: 0;
  color: #155f9e;
  font-weight: 700;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .oe-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .oe-form {
    grid-template-columns: 1fr;
  }

  .oe-field,
  .oe-field--full,
  .oe-form__header,
  .oe-send {
    grid-column: 1;
  }

  .oe-send__grid {
    grid-template-columns: 1fr;
  }

  .oe-form__header {
    align-items: center;
  }
}
