
.crf-form-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.crf-form {
  width: 100%;
  padding: 1.5rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #ffffff;
  box-sizing: border-box;
}

.crf-section-title {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.crf-field {
  margin-bottom: 1rem;
}

.crf-field label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.crf-field input[type="text"],
.crf-field input[type="email"],
.crf-field input[type="tel"],
.crf-field input[type="url"],
.crf-field input[type="file"],
.crf-field select,
.crf-field textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

.crf-message {
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  border-radius: 4px;
}

.crf-message-success {
  background: #dff0d8;
  color: #3c763d;
}

.crf-message-error {
  background: #f2dede;
  color: #a94442;
}

.crf-field-consent label {
  font-weight: 400;
}

.crf-help-text {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.crf-divider {
  border-top: 1px solid #e0e0e0;
  margin: 1rem 0;
}

.crf-step-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.crf-step-number {
  font-weight: 600;
  color: #A90E00;
  font-size: 0.9rem;
}

.crf-step-title {
  font-size: 0.9rem;
  color: #666;
}

.crf-steps {
  margin-bottom: 1rem;
}

.crf-step {
  display: none;
}

.crf-step-active {
  display: block;
}

.crf-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.crf-step-prev,
.crf-step-next,
.crf-submit {
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.crf-step-prev {
  background: #e0e0e0;
  color: #333;
}

.crf-step-next,
.crf-submit {
  background: #A90E00;
  color: #fff;
}

.crf-step-next:hover,
.crf-submit:hover {
  background: #7f0a00;
}

.crf-step-prev:hover {
  background: #c7c7c7;
}
