html, body {
	background: #FFD812;
}

a {
    color: #111;
}

.overlay {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	transition: all 0.2s;
	transition-delay: 0s;
	transition-timing-function: ease;
  background: rgba(0,0,0,0.6);
}
	.overlay.active {
		top: 0;
	}
	.overlay-panel {
		width: 90%;
		max-width: 600px;
		padding: 20px 40px;
		border-radius: 20px;
		background: #f1f1f1;
		color: #111;
		text-align: center;
	}
	.overlay-panel p {
		margin-bottom: 10px;
	}

input, textarea, select, fieldset {
	margin-bottom: 10px;
}
	.form-action {
		display: flex; 
		justify-content: space-between; 
		margin-top: 35px;
	}
	input[type=text],
	input[type=tel],
	input[type=email] {
		font-size: 16px;
	}

span.error {
	text-align: left;
	margin-top: 0px;
}

.container {
	padding: 20px;
}
	#logo {
		display: block;
		max-width: 100px;
	}

	.stepper {
		margin: 50px auto 60px;
		/*text-align: center;*/
	}

.activate-columns {
	display: flex;
	align-items: center;
}

.confirm-data {
	margin: 0 0 20px;
	display: flex;
	flex-wrap: wrap;
}
.confirm-data div {
	width: 50%;
	margin: 0 0 10px;
	font-size: 14px;
}

.activated {
	/*margin: 100px 0 50px;*/
	text-align: center;
}

#card {
	width: 100%;
	max-width: 380px;
}

#otp {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 30px 0 0;
}
#otp input {
  width: 18%;
  height: 100px;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  border: solid 1px rgba(0,0,0,0.1);
  /*margin: 0 0 8px;*/
  margin:  0 0 1.5rem;
  font-size: 40px;
  font-weight: 700;
}
#otp input.fill {
  border: solid 1px #FFA42F !important;
}

/* RESPONSIVE */

@media (max-width: 600px) {

	#card {
		max-width: 320px;
		margin: 0 0 60px;
	}

	.card-sample {
		position: fixed;
		float: none;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 99;
		opacity: 0;
		top: 100vh;
		left: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		background: rgba(0,0,0,0.8);
		transition: all 0.2s;
	}
		.card-sample.active {
			top: 0;
			opacity: 1;
		}
		.card-wrap {
			background: #fff;
			border-radius: 10px;
			padding: 20px;
			width: 90%;
			height: 285px;
			display: flex;
			justify-content: center;
			align-items: center;
			flex-wrap: wrap;
		}
		.card-wrap:after {
			content: "Where to find the 10 digits ID on your card";
			display: block;
			width: 100%;
			margin: 0;
			font-size: 13px;
			text-align: center;
			line-height: 1em;
			font-weight: 600;
			background: #FFD812;
			padding: 10px 15px;
			border-radius: 50px;
		}
		.card-sample .close {
			position: fixed;
			bottom: 20px;
			left: 50%;
			margin-left: -25px;
			background: #fff;
			opacity: 1;
			width: 54px;
			height: 54px;
			border-radius: 100%;
		}
		.card-sample .close:after,
		.card-sample .close:before {
			left: 26px;
			top: 10px;
		}

		#otp input {
		  width: 18%;
		  height: 60px;
		  text-align: center;
		  background: #fff;
		  border-radius: 5px;
		  border: solid 1px rgba(0,0,0,0.1);
		  padding: 0;
		  margin:  0 0 1.5rem;
		  font-size: 40px;
		  font-weight: 700;
		}

		.activated > img {
			margin: 50px 0 20px !important;
		}

}
