.container-fluid{
    background: linear-gradient(0.40turn, #bcd6ed 0 15%, #326899 60% 99%);
    min-height: 70vh;
}

.wizard-steps {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  position: relative;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 30%;
  width: 100%;
  height: 2px;
  background: #dee2e6;
}

.wizard-steps li {
  text-align: center;
  position: relative;
  z-index: 1;
}

.wizard-steps .step {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}

.wizard-steps li.active .step {
  background: #007bff;
  color: #fff;
}

.wizard-steps li.completed .step {
  background: #28a745;
  color: #fff;
}

.wizard-step {
  display: none;
}

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

label.error {
  color: red;
  font-size: 13px;
}

.form-card {
  background: white;
  border: 0 none;
  border-radius: 0px;
/*   box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2); */
  padding: 20px 40px 30px 40px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.carousel-wrapper {
  width: 640px; /* enough for 2 cards */
  margin: auto;
}

.carousel {
  display: flex;
  overflow: hidden;
}

.option {
  width: 50%;               /* TWO cards at once */
  padding: 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.option:hover {
  border-color: #6366f1;
}

.option.selected {
  border-color: #4f46e5;
  background: #eef2ff;
}

.plans-wrapper {
  display: flex;
  gap: 20px;              /* GAP BETWEEN DIVS */
}

.plans-wrapper {
  display: flex;
  gap: 20px;
}

.plan {
  flex: 1;
  padding: 24px;
  border: 2px solid #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
  text-align: center;
}

.plan input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan:hover {
  border-color: #6366f1;
}

/* Selected state using :has (modern browsers) */
.plan:has(input:checked) {
  border-color: #4f46e5;
  background: #eef2ff;
}

.plan.active {
  border-color: #4f46e5;
  background: #eef2ff;
}

.plan.error-border {
    border: 2px solid red;
    padding: 5px;
    border-radius: 4px;
}
/*
* Email Validation Css Style
*
*/
.otc {
	position: relative;
	width: 320px;
	margin: 0 auto;
}

.otc fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

.otc fieldset div.input-div {
	display: inline-flex; 
	align-items: center;
}

.otc legend {
/* 	margin: 0 auto 1em; */
	color: #5555FF;
  text-align:center;
}

input[type="number"] {
	width: .82em;
	line-height: 1;
	margin: .1em;
	/* padding: 8px 0 4px; */
	font-size: 2.65em;
	text-align: center;
	appearance: textfield;
	-webkit-appearance: textfield;
	border: 2px solid #BBBBFF;
	color: purple;
	border-radius: 4px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 2 group of 3 items */
input[type="number"]:nth-child(n+4) {
	order: 2;
}

.otc div.input-div::before {
	content: '';
	height: 2px;
	width: 24px;
	margin: 0 .25em;
	order: 1;
	background: #BBBBFF;
}

.otc label {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}