.oa-otp-lock {
	overflow: hidden;
}

.oa-otp-layer {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	background: rgba(33, 42, 49, 0.78);
	backdrop-filter: blur(2px);
}

.oa-otp-layer.is-active {
	display: block !important;
}

.oa-otp-dialog {
	position: fixed;
	top: 50%;
	left: 50%;
	width: min(440px, calc(100vw - 32px));
	max-height: calc(100vh - 32px);
	overflow-y: auto;
	transform: translate(-50%, -50%);
	background: #ffffff;
	border: 1px solid rgba(249, 155, 10, 0.35);
	border-radius: 0;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
	color: #181818;
}

.oa-otp-head {
	position: relative;
	padding: 25px 56px 23px;
	text-align: center;
	background: #2e3944;
	border-top: 5px solid #f99b0a;
}

.oa-otp-brand {
	margin-bottom: 5px;
	color: #f99b0a;
	font-family: var(--thm-font-2, Rajdhani, sans-serif);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.oa-otp-title {
	margin: 0;
	color: #ffffff;
	font-family: var(--thm-font-2, Rajdhani, sans-serif);
	font-size: 28px;
	line-height: 1.1;
	font-weight: 700;
}

.oa-otp-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 34px;
	height: 34px;
	border: 0;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.oa-otp-close:hover,
.oa-otp-close:focus {
	background: #f99b0a;
	color: #181818;
	outline: none;
}

.oa-otp-body {
	padding: 30px 30px 32px;
	text-align: center;
}

.oa-otp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin-bottom: 21px;
	background: #fff7e9;
	border: 1px solid rgba(249, 155, 10, 0.45);
	color: #124e66;
	font-size: 30px;
	border-radius: 50%;
}

.oa-otp-body h3 {
	margin: 0 0 10px;
	color: #2e3944;
	font-family: var(--thm-font-2, Rajdhani, sans-serif);
	font-size: 25px;
	line-height: 1.18;
	font-weight: 700;
	text-transform: uppercase;
}

.oa-otp-body p {
	margin: 0 auto 20px;
	max-width: 340px;
	color: #636363;
	font-size: 15px;
	line-height: 1.6;
}

.oa-otp-email {
	display: block;
	color: #2e3944;
	font-weight: 700;
}

.oa-otp-digits {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
	margin: 22px 0 18px;
}

.oa-otp-digit {
	width: 100%;
	aspect-ratio: 1 / 1.08;
	border: 1px solid #d8dde0;
	background: #ffffff;
	color: #2e3944;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.oa-otp-digit:focus {
	border-color: #f99b0a;
	box-shadow: 0 0 0 3px rgba(249, 155, 10, 0.18);
	outline: none;
}

.oa-otp-action,
.oa-otp-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	border: 1px solid #f99b0a;
	background: #f99b0a;
	color: #181818;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 180ms ease;
}

.oa-otp-action:hover,
.oa-otp-action:focus {
	background: #124e66;
	border-color: #124e66;
	color: #ffffff;
	outline: none;
}

.oa-otp-action:disabled,
.oa-otp-secondary:disabled {
	cursor: not-allowed;
	opacity: 0.68;
}

.oa-otp-secondary {
	margin-top: 14px;
	background: transparent;
	color: #124e66;
}

.oa-otp-secondary:hover,
.oa-otp-secondary:focus {
	background: #f5f6f0;
	color: #2e3944;
	outline: none;
}

.oa-otp-message,
.oa-form-notice {
	min-height: 20px;
	margin-top: 12px;
	color: #c0392b;
	font-size: 13px;
	line-height: 1.45;
	text-align: center;
}

.oa-otp-message.is-success,
.oa-form-notice.is-success {
	color: #138a52;
}

.oa-form-notice {
	display: block;
	width: 100%;
	margin-top: 10px;
	text-align: left;
}

.contact-one__form-btn .oa-form-notice {
	display: none;
}

.oa-success-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	margin-bottom: 20px;
	background: #124e66;
	color: #ffffff;
	font-size: 34px;
	border-radius: 50%;
	box-shadow: 0 12px 24px rgba(18, 78, 102, 0.24);
}

@media only screen and (max-width: 480px) {
	.oa-otp-head {
		padding: 22px 48px 20px;
	}

	.oa-otp-title {
		font-size: 24px;
	}

	.oa-otp-body {
		padding: 26px 20px 28px;
	}

	.oa-otp-digits {
		gap: 6px;
	}

	.oa-otp-digit {
		font-size: 20px;
	}
}
