.Requisites {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
  padding: calc(20px + clamp(24px, 4vw, 48px)) clamp(16px, 4vw, 64px) clamp(24px, 4vw, 48px);
  text-align: center;
  background: #f6f8fb;
  color: #0f172a;
  margin-top: 0;
}

.Requisites > div {
  width: min(960px, 100%);
  margin: 0 auto;
}

.RequisitesActions {
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

.RequisitesBackButton,
.RequisitesHomeButton {
  padding: 0.35rem 0.9rem;
  border: 1px solid #cbd5f5;
  background: transparent;
  color: #0f172a;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.RequisitesBackButton[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.RequisitesHomeButton {
  background: #0f172a;
  color: #fff;
}

.RequisitesH1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
}