.code-input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 10px;
}
.code-input input {
	text-align: center;
	display: block;
	width: 50px;
	height: 50px;
	padding: .775rem .775rem;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--bs-gray-700);
	background-color: var(--bs-body-bg);
	background-clip: padding-box;
	border: 1px solid var(--bs-gray-300);
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border-radius: .475rem;
	-webkit-box-shadow: false;
	        box-shadow: false;
	-webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	-o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}
.code-input input:focus {
	color: var(--bs-gray-700);
	background-color: var(--bs-body-bg);
	border-color: var(--bs-gray-400);
	outline: 0;
	-webkit-box-shadow: false, 0 0 0 .25rem rgba(62, 151, 255, .25);
	        box-shadow: false, 0 0 0 .25rem rgba(62, 151, 255, .25);
}