#vmu-email-otp-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999999;
}
#vmu-email-otp-modal.is-open {
	display: block;
}
body.vmu-otp-open {
	overflow: hidden;
}
.vmu-otp-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}
.vmu-otp-dialog {
	position: relative;
	width: min(92vw, 460px);
	margin: 8vh auto 0;
	background: #1b1a1f;
	color: #fff;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 4px;
	box-shadow: 0 20px 60px rgba(0,0,0,.45);
	z-index: 2;
}
.vmu-otp-content {
	padding: 32px;
}
.vmu-otp-content h2 {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.2;
	color: #fff;
}
.vmu-otp-description {
	margin: 0 0 8px;
	color: rgba(255,255,255,.82);
}
.vmu-otp-email {
	margin: 0 0 24px;
	font-weight: 600;
	word-break: break-word;
}
.vmu-otp-content label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}
.vmu-otp-input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	height: 52px;
	padding: 10px 14px;
	font-size: 24px;
	letter-spacing: 7px;
	text-align: center;
	background: #29272c;
	color: #fff;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 3px;
}
.vmu-otp-input:focus {
	outline: 2px solid rgba(255,255,255,.45);
	outline-offset: 1px;
}
.vmu-otp-verify {
	width: 100%;
	margin-top: 16px !important;
	cursor: pointer;
}
.vmu-otp-verify:disabled,
.vmu-otp-resend:disabled,
.vmu-otp-change:disabled {
	opacity: .55;
	cursor: not-allowed;
}
.vmu-otp-message {
	min-height: 22px;
	margin-top: 10px;
	font-size: 14px;
	color: rgba(255,255,255,.78);
}
.vmu-otp-message.is-error {
	color: #ffb4b4;
}
.vmu-otp-message.is-success {
	color: #b9f6c5;
}
.vmu-otp-actions {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
}
.vmu-otp-actions button {
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	text-decoration: underline;
	cursor: pointer;
	font-size: 14px;
}
.vmu-otp-close {
	position: absolute;
	right: 12px;
	top: 8px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 10px;
}
@media (max-width: 600px) {
	.vmu-otp-dialog {
		margin-top: 4vh;
	}
	.vmu-otp-content {
		padding: 26px 20px;
	}
}
