.quote-body {
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
}

.quote-body .auth-story,
.quote-body .auth-panel {
  min-width: 0;
}

.quote-body .auth-story {
  padding: clamp(36px, 5vw, 76px);
  justify-content: center;
  gap: clamp(58px, 9vh, 110px);
}

.quote-body .auth-story > .auth-back {
  display: inline-flex;
  align-self: flex-start;
}

.quote-body .apricot-site-logo {
  display: block;
  width: clamp(300px, 31vw, 460px);
  max-width: 100%;
  height: clamp(130px, 14vw, 200px);
  object-fit: contain;
  object-position: left center;
}

.quote-body .auth-story > div {
  width: min(620px, 100%);
}

.quote-body .auth-story h1 {
  font-size: clamp(3.2rem, 5.2vw, 5.8rem);
  margin: 0 0 28px;
}

.quote-body .auth-panel {
  padding: clamp(32px, 5vw, 76px);
  overflow-y: auto;
}

.quote-body .auth-card {
  width: min(560px, 100%);
}

.quote-body .auth-card h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.auth-card textarea,
.auth-card select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  outline: none;
}

.auth-card textarea {
  min-height: 110px;
  resize: vertical;
}

.auth-card textarea:focus,
.auth-card select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,157,46,.12);
}

.quote-success {
  color: #9ee6b0 !important;
  border: 1px solid rgba(89,190,113,.4);
  background: rgba(89,190,113,.1);
  padding: 14px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .quote-body {
    grid-template-columns: 1fr;
  }

  .quote-body .auth-story {
    min-height: 420px;
    gap: 36px;
  }

  .quote-body .auth-story h1 {
    margin-top: 0;
  }

  .quote-body .auth-panel {
    padding: 48px 24px;
  }
}
