.quiz-identity {
  background: #f7f3fb;
  border-bottom: 1px solid #ddd9e2;
  padding: 24px;
}

.quiz-identity-heading {
  margin-bottom: 18px;
}

.quiz-identity-heading strong {
  color: #0d1236;
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.quiz-identity-heading span {
  color: #6c6e7b;
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 4px;
}

.quiz-identity-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quiz-identity-field {
  display: grid;
  gap: 7px;
}

.quiz-identity-field > span {
  color: #8e5ec6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quiz-identity-field input {
  background: #ffffff;
  border: 1px solid #c9c5ce;
  border-radius: 0;
  color: #30313d;
  min-height: 44px;
  outline: none;
  padding: 10px 12px;
  width: 100%;
}

.quiz-identity-field input:focus {
  border-color: #8e5ec6;
  box-shadow: 0 0 0 3px rgba(142, 94, 198, 0.14);
}

.quiz-identity-field input::placeholder {
  color: #9697a1;
}

.quiz-company-field {
  display: none !important;
}

.quiz-submit-status {
  color: #666975;
  font-size: 12px;
  line-height: 1.45;
  margin: 18px 24px -8px;
  min-height: 18px;
}

.quiz-submit-status.is-success {
  color: #315f48;
  font-weight: 700;
}

.quiz-submit-status.is-error {
  color: #8a3f3f;
  font-weight: 700;
}

.quiz-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.dark .quiz-identity {
  background: #171c45;
  border-color: rgba(215, 184, 239, 0.3);
}

.dark .quiz-identity-heading strong,
.dark .quiz-identity-field input {
  color: #ffffff;
}

.dark .quiz-identity-heading span {
  color: #c2c6d7;
}

.dark .quiz-identity-field input {
  background: #0d1236;
  border-color: rgba(215, 184, 239, 0.45);
}

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

@media print {
  .quiz-submit-status,
  .quiz-submit {
    display: none !important;
  }

  .quiz-identity {
    background: #ffffff !important;
    break-inside: avoid;
  }
}
