.status-lookup {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 16px;
  align-items: stretch;
}

.status-lookup-copy,
.status-lookup-form {
  min-width: 0;
  padding: 38px 40px;
}

.status-lookup-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-lookup-copy h1 {
  max-width: 520px;
  margin-bottom: 15px;
  font-size: clamp(31px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.status-lookup-copy .lead {
  max-width: 530px;
  margin-bottom: 24px;
}

.status-lookup-note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--panel-soft);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.status-lookup-note span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}

.status-lookup-form {
  background: var(--panel-solid);
}

.status-lookup-form h2 {
  margin-bottom: 7px;
  font-size: 24px;
  letter-spacing: -.02em;
}

.status-lookup-form > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.status-field {
  margin-bottom: 17px;
}

.status-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.status-field input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  background: var(--panel-soft);
  color: var(--text);
  font-size: 16px;
  transition: border-color .14s ease, box-shadow .14s ease, background .14s ease;
}

.status-field input::placeholder {
  color: var(--muted2);
}

.status-field input:focus {
  border-color: var(--blue);
  background: var(--panel-solid);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 16%, transparent);
}

.status-hint {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.status-error {
  margin-bottom: 18px;
  padding: 12px 13px;
  border: 1px solid color-mix(in srgb, var(--red) 44%, var(--line));
  border-radius: 9px;
  background: color-mix(in srgb, var(--red) 10%, var(--panel-solid));
  color: var(--red);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.status-submit {
  width: 100%;
  margin-top: 3px;
}

@media (max-width: 880px) {
  .status-lookup {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .status-lookup-copy,
  .status-lookup-form {
    padding: 24px;
  }

  .status-lookup-copy h1 {
    font-size: clamp(29px, 9vw, 36px);
  }
}
