

.card-anmeldung {
	border-radius: 20px;
	background: #F7F7F8;
	padding: clamp(15px, 4vw, 40px);
}

.form-choice legend {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 14px;
}

.form-choice .radio-flex {
	display: flex;
	flex-flow: column;
	gap: 14px;
}

.form-choice .radio-flex div {
	display: flex;
	flex-flow: row;
	align-items: center;
	gap: 6px;
}

.form-choice input {
accent-color: var(--color-blue);
	cursor: pointer;
}
.form-choice input:checked + label {
	color: var(--color-blue);
}

.forms-wrapper > div {
  display: none;
}
.forms-wrapper > div.is-active {
  display: block;
}

.forms-wrapper button.ship-button {
	display: inline-block;
	width: auto;
}

.forms-wrapper legend,
.forms-wrapper label {
	display: block;
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 16px;
	margin-top: 0;
	line-height: 1;
}

.forms-wrapper select, .forms-wrapper input, .forms-wrapper input[type="text"] {
  width: 100%;
  margin-bottom: 30px;
  color: #404040;
  background: white;
  border: 1px solid white;
  border-radius: 4px;
  padding: 9px 16px;
  font-size: 16px;
  outline: none;
  accent-color: var(--color-blue);
	font-weight: 500 !important;
	line-height: 1;
	height: 40px;
}

.forms-wrapper textarea {
  width: 100%;
  margin-bottom: 30px;
  color: #404040;
  background: white;
  border: 1px solid white;
  border-radius: 4px;
  padding: 9px 16px;
  font-size: 16px;
  outline: none;
  accent-color: var(--color-blue);
	font-weight: 500 !important;
	line-height: 1;
	height: 80px;
}