.dc-form-group {
  margin-bottom: 1.5rem;
}

.dc-form-label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: .9rem;
}

.dc-form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 1rem;
  transition: all .3s ease;
  background: #fff;
}

.dc-form-input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(179, 35, 35, 0.1);
  transform: translateY(-1px);
}

.dc-input-addons {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s ease;
}

.dc-input-addons:focus-within {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(179, 35, 35, 0.1);
}

.dc-input-addon {
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border-right: 2px solid var(--border-light);
  font-weight: 600;
  color: var(--text-dark);
}

.dc-input-addons input {
  flex: 1;
  border: none;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  outline: none;
}

.dc-consent {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin: 2rem 0;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.dc-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-red);
  margin-top: .1rem;
}

.dc-consent label {
  font-size: .9rem;
  line-height: 1.4;
  color: var(--text-dark);
}