  /* Typography */
.step-form * {
	font-family: "Poppins - Regular", sans-serif; 
	color: #444
}
.step-form h2 {
	text-align: center;
	font-size: clamp(16px,1.2vw,20px);
	font-weight: bold;
}
.step-form h3 {
	text-align: center;
	color: #ed9600;
	font-weight: bold;
	font-size: clamp(20px, 5vw, 30px);
	margin-bottom: clamp(15px, 5vw, 30px);
}
.step-form__disclaimer{
	text-align: center;
	font-family: "Poppins";
	font-size: 12px;
	line-height: 1.3;
	margin-top: 30px;
}

/* Activate only the first step */
.step-form__step { display: none }
.step-form__step.active { display: block }

/* Form overall layout */
.step-form__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 500px;
	margin: 0 auto;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
	padding: 30px;
	border-radius: 10px;
}
@media only screen and (max-width: 600px){
    .step-form__wrapper {
		padding: 30px 5%;
	}
}

.step-form {
	width: 100%;
}
.step-form__grid--1col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.step-form__footer{
	max-width: 350px;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

/* Form input fields & buttons */
.step-form__step input, 
.step-form__step select {
	height: 48px; width: 100%; 
	font-size: 16px !important;
}
.step-form__footer button{
	margin: 20px auto 0 auto;
	background-color: #ed9600;
	border: none;
	padding: 10px 30px;
	min-width: 100px;
	border-radius: 50px;
	color: #fff !important;
	font-size: 20px;
}
.step-form__footer button:hover {
	cursor: pointer
}

/* Form validation message */
.step-form .step-form__field--error {
	border: 2px solid red !important;
	background-color: #ffe6e6;
	border-radius: 5px;
}

/* Form loading spinner */
.step-form__wrapper .loader {
    all: unset;
	position: absolute;
	border: 20px solid #ccc;
	border-top: 20px solid #ed9600;
	border-radius: 50%;
	width: 75px;
	height: 75px;
	animation: spin 2s linear infinite;
	display: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	z-index: 10;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* CUSTOM SELECT2 STYLING */
.select2.select2-container {
	width: 100% !important;
}
.select2.select2-container .select2-selection {
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 50px;
	margin-bottom: 15px;
	outline: none !important;
	transition: all .15s ease-in-out;
}
.select2.select2-container .select2-selection .select2-selection__rendered {
	color: #333;
	line-height: 48px;
	padding-right: 40px;
}
.select2.select2-container .select2-selection .select2-selection__arrow {
	background: #f8f8f8;
	border-left: 1px solid #ccc;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	height: 48px;
	width: 40px;
}
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
	background: #f8f8f8;
}
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
	-webkit-border-radius: 0 3px 0 0;
	-moz-border-radius: 0 3px 0 0;
	border-radius: 0 3px 0 0;
}
.select2-container .select2-dropdown {
	background: transparent;
	border: none;
}
.select2-container .select2-dropdown .select2-search,
.select2-container .select2-dropdown .select2-results {
	padding: 0px;
}
.select2-container .select2-dropdown .select2-results ul {
	background: #fff;
	border:  none;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	border-radius: 0 0 5px 5px;
}
.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
	background-color: #ed9600;
}
.select2.select2-container .select2-selection {
	margin-bottom: 0 !important;
}
input.select2-search__field {
	padding: 10px !important;
	border: 1px solid #ccc;
}