/**
 * Nexia Verify Email
 */

.nexia-verify-page {
	padding: 80px 20px;
}

.nexia-verify-container {
	max-width: 520px;
	margin: 0 auto;
	text-align: center;
}

.nexia-verify-title {
	margin: 0 0 20px;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
}

.nexia-verify-description {
	margin: 0;
	font-size: 1rem;
	opacity: .8;
}

.nexia-verify-email {
	margin: 15px 0 40px;
	font-size: 1.1rem;
	font-weight: 600;
	word-break: break-word;
}

.nexia-otp-wrapper {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: nowrap;
}

.nexia-otp-input {
	width: 58px;
	height: 58px;

	padding: 0;

	text-align: center;
	font-size: 1.6rem;
	font-weight: 600;

	border: 2px solid #d9d9d9;
	border-radius: 12px;

	background: transparent;

	outline: none;

	transition: .25s ease;
}

.nexia-otp-input:focus {
	border-color: #ff6b00;
	box-shadow: 0 0 0 4px rgba(255,107,0,.15);
}

.nexia-verify-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 220px;
	height: 54px;

	padding: 0 28px;

	border: 0;
	border-radius: 12px;

	background: #ff6b00;
	color: #fff;

	font-size: 1rem;
	font-weight: 600;

	cursor: pointer;

	transition: .25s ease;
}

.nexia-verify-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255,107,0,.25);
}

.nexia-resend-wrapper {
	margin-top: 35px;
}

.nexia-resend-text {
	margin-bottom: 12px;
	opacity: .75;
}

.nexia-resend-button {
	background: none;
	border: 0;
	padding: 0;

	font-weight: 600;

	cursor: pointer;
}

.nexia-resend-button:disabled {
	opacity: .45;
	cursor: default;
}

.nexia-verify-message {
	margin-top: 30px;
	font-weight: 600;
	min-height: 24px;
}

@media (max-width:640px) {

	.nexia-verify-page {
		padding: 60px 20px;
	}

	.nexia-otp-wrapper {
		gap: 8px;
	}

	.nexia-otp-input {

		width: 46px;
		height: 46px;

		font-size: 1.25rem;
	}

	.nexia-verify-button {
		width: 100%;
	}

}
