.otp-group {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 10px;
	justify-content: center;
	width: 100%;
	max-width: 400px;
	margin: 0 auto 20px auto;
}

.otp-input {
	width: 45px !important;
	height: 55px !important;
	border-radius: 12px;
	border: 2px solid #ddd;
	background-color: #f9f9f9;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: #333;
	outline: none;
	transition: all 0.2s ease-in-out;
	padding: 0;
}

.otp-input:focus {
	border-color: #EDB66D;
	background-color: #fff;
	box-shadow: 0 0 0 4px rgba(237, 182, 109, 0.15);
	transform: translateY(-2px);
}

@media (max-width: 380px) {
	.otp-group {
		gap: 5px;
	}
	.otp-input {
		width: 38px !important;
		height: 48px !important;
		font-size: 18px;
	}
}
