.page {
	height: 100vh;
	position: relative;
}

.page .footer {
	position: absolute;
	bottom: 0;
}

.page .body-login {
	display: flex;
	align-items: center;
	height: 100%;
}

.page .page-bg {
	padding: 24px;
	background-color: #d6ebff;
	height: 100%;
	display: flex;
	align-items: center;
	width: 50%;
}

.page .page-bg h2 {
	padding-left: 48px;
	font-weight: 400;
}

.page .page-bg h2 span {
	color: #0054a6;
	font-weight: 600;
}

.page .page-bg img {
	width: 400px;
	height: auto;
}

.page .page-content {
	width: 50%;
	z-index: 1;
}

.page .page-content .content {
	width: 65%;
	margin: 0 auto;
}

.page .page-content .content .logo {
	margin-bottom: 36px;
}

.page .page-content .content .logo img {
	width: 100%;
	height: auto;
}

.page .page-content .content #form-login label:not(.custom-radio) {
	display: block;
	margin-bottom: 8px;
	color: #0054a6;
}

.page .page-content .content #form-login button[type="submit"] {
	width: 100%;
}

.custom-radio {
	position: relative;
	display: flex;
	align-items: center;
	column-gap: 8px;
	padding: 14px;
	padding-right: 24px;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	width: 50%;
	font-size: 14px;
	cursor: pointer;
}

.custom-radio .checked {
	position: absolute;
	top: 5px;
    right: 5px;
	display: none;
	color: #0f88ff;
	font-size: 15px;
}

.custom-radio:has(input:checked) {
	border-color: #0f88ff;
}

.custom-radio:has(input:checked) .checked {
	display: block;
}

.custom-radio i {
	font-size: 22px;
	color: #0054a6;
}

.custom-radio span {
	line-height: 1.2;
}

.list-otp-field {
	display: none;
	align-items: center;
	justify-content: center;
}

.list-otp-field.show {
	display: flex;
}

.list-otp-field .otp-field {
	flex-direction: row;
	column-gap: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.list-otp-field .otp-field input {
	height: 40px;
    width: 40px;
	border-radius: 6px;
	outline: none;
	font-size: 1.125rem;
	text-align: center;
	border: 1px solid #ddd;
}

.list-otp-field .otp-field input:focus {
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.list-otp-field .otp-field input::-webkit-inner-spin-button,
.list-otp-field .otp-field input::-webkit-outer-spin-button {
	display: none;
}

.list-otp-field .send-otp {
	height: 42px;
}

#recaptcha-v2 {
	display: flex;
	justify-content: center;
}

@media (max-width: 1270px) {
	.page .page-content .content {
		width: 90%;
	}
}

@media (max-width: 991px) {
	.page .page-bg img {
		width: 80%;
	}

	.list-otp-field {
		flex-direction: column;
		gap: 8px;
	}
}

@media (max-width: 767px) {
	.page {
		height: auto;
	}

	.page .body-login {
		flex-direction: column;
		gap: 8px;
	}

	.page .page-bg, .page .page-content {
		width: 100%;
	}

	.page .page-bg h2 {
		padding: 0;
		font-size: 24px;
		text-align: center;
	}

	.page .footer {
		display: none;
	}

	.custom-radio {
		padding: 8px;
		padding-right: 24px;
	}

	.page .page-bg img {
        width: 60%;
    }

	.page .page-content .content .logo img {
		width: 70%;
	}

	.page .page-content .content #form-login button[type="submit"] {
		width: 70%;
	}

	.list-otp-field.show {
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.list-otp-field .send-otp {
		height: inherit;
	}
}