/* Online legal forms (questionnaire, consent, account) */
.titane-legal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 0 24px;
  padding: 24px 22px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
}

.titane-legal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #191919;
}

.titane-legal-form input[type="text"],
.titane-legal-form input[type="email"],
.titane-legal-form input[type="tel"],
.titane-legal-form input[type="date"],
.titane-legal-form textarea {
  height: 46px;
  padding: 0 14px;
  border: 2px solid #191919;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

.titane-legal-form textarea {
  height: auto;
  min-height: 88px;
  padding: 12px 14px;
  resize: vertical;
}

.titane-legal-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.titane-legal-form__fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.titane-legal-form__fieldset legend {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  width: 100%;
}

.titane-legal-form__radio,
.titane-legal-form__check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.45;
}

.titane-legal-form__radio input,
.titane-legal-form__check input {
  margin-top: 3px;
  flex-shrink: 0;
}

.titane-legal-form__submit {
  align-self: flex-start;
  min-width: 220px;
  height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 21px;
  background: #fd6c1e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.titane-legal-form__submit:hover {
  background: #e56a18;
}

.titane-legal-form__note {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.45;
}

.titane-legal-form__linkbtn {
  border: none;
  background: none;
  color: #fd6c1e;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.titane-legal-form.is-sent {
  border-color: #fd6c1e;
}

.titane-legal-form__toast {
  margin: 0 0 12px;
  padding: 12px 14px;
  background: #fff7f0;
  border: 1px solid #fd6c1e;
  color: #191919;
  font-size: 14px;
}

.terms-page__toc {
  margin: 0 0 28px;
  padding: 16px 18px;
  background: #f7f7f7;
  font-size: 14px;
  line-height: 1.5;
}

.terms-page__toc ol {
  margin: 10px 0 0;
  padding-left: 20px;
}

.terms-page__toc a {
  color: #fd6c1e;
  text-decoration: none;
}

.terms-page__hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0 0 36px;
}

.terms-page__hub-card {
  display: block;
  padding: 18px 16px;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: #191919;
  background: #fff;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.terms-page__hub-card:hover {
  border-color: #fd6c1e;
  transform: translateY(-2px);
}

.terms-page__hub-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fd6c1e;
  font-size: 15px;
}

.terms-page__hub-card span {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.titane-account__status {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .titane-legal-form__row {
    grid-template-columns: 1fr;
  }

  .titane-legal-form {
    padding: 16px 14px;
  }
}


.titane-legal-sample__list {
  margin: 12px 0 18px;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #191919;
}

.titane-legal-sample__list li {
  margin: 0 0 6px;
}
