
body {
	background: #ffffff !important;
}

.login-error {
	color: red;
	display: none;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color: #ffffff;
	height: 100vh;
	overflow: hidden;
}

.main-container {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	display: flex;
}

.left-section {
	width: 50%;
	height: 100%;
	background-color: #ffffff;
	position: relative;
	display: flex;
	justify-content: center;
	align-items:center;
	flex-direction:column;
}

.right-section {
	width: 50%;
	height: 100%;
	background-color: #BEE4DD;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-title {
	font-size: 36px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 44px;
	text-align: center;
	color: #0b1420;
	height: 52px;
	text-align:left;
	margin-bottom: 17px;
}

.console-subtitle {
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	color: #525252;
	height: 20px;
	width: 196px;
	margin-bottom: 49px;
}
.otp-title {
	font-size: 36px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 44px;
	text-align: left;
	color: #0b1420;
	height: 52px;
	margin-bottom: 17px;
}

.otp-subtitle {
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	color: #525252;
	height: 20px;
	margin-bottom: 49px;
}

.otp-input-container {
	width: 388px;
	height: 75px;
	margin-bottom: 5px;
}
.otp-error-msg{
	margin-bottom:10px;
}
.resend-otp-container{
	font-size:14px;
	margin-bottom:45px;
	text-align:right;
	width:388px;		
}
.mobile-input-container {
	width: 388px;
	height: 75px;
}
.div-error-msg{
	margin-bottom:80px;
}

.mobile-label {
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	color: #0b1420;
	height: 23px;
	width: 129px;
	margin-bottom: 4px;
}

.mobile-input {
	width: 388px;
	height: 48px;
	border: 1px solid #d4d7e3;
	border-radius: 12px;
	padding: 12px 16px;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	line-height: 20px;
	color: #000000;
	outline: none;
	transition: border-color 0.3s ease;
}

.mobile-input:focus {
	/*border-color: #e58a30;*/
}

.request-otp-btn {
	width: 388px;
	height: 52px;
	background-color: #BEE4DD;
	border: none;
	border-radius: 12px;
	color: #000000;
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	line-height: 25px;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	margin-bottom: 51px;
}

.request-otp-btn:hover {
	background-color: #BEE4DD;
	transform: translateY(-1px);
}

.request-otp-btn:active {
	transform: translateY(0);
}

.request-otp-btn:disabled {
	background-color: #cccccc;
	cursor: not-allowed;
	transform: none;
}

.support-info {
	background: rgba(190, 228, 221, 0.28);
	height: 52px;
	border-radius: 12px;
	padding: 16px 17px;
}

.support-text {
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	color: #313957;
	height: 23px;
	width: 540px;
}

.support-email {
	color: #5a79c1;
	text-decoration: none;
}

.support-email:hover {
	text-decoration: underline;
}

.brand-logo {
	width: 40%;
}

.copyright {
	position: absolute;
	bottom: 10px;
	/*left: 322px;*/
	font-size: 10px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	line-height: 12px;
	text-align: center;
	color: #959cb5;
	height: 14px;
}

.loading {
	opacity: 0.7;
	pointer-events: none;
}

.success-message {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	border-radius: 8px;
	padding: 12px;
	margin-top: 16px;
	display: none;
}

.error-message {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	border-radius: 8px;
	padding: 12px;
	margin-top: 16px;
	display: none;
}
.otp-edit-a-new{
	color: #3B65C5;
	color: #3B65C5;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;

}
.otp-resend-success{
	display:none;
}
.help-divider{
	border-top:1px solid #CFDFE2;
	width:388px;
	margin-bottom:16px;
}

@media (max-width: 768px) {
	.main-container {
		width: 100%;
		height: 100vh;
		flex-direction: column;
	}

	.left-section {
		width: 100%;
		padding: 40px 20px;
	}

	.right-section {
		width: 100%;
		height: 300px;
	}

	.otp-input-container,
	.request-otp-btn {
		width: 100%;
	}

	.support-info {
		width: calc(100% - 40px);
		position: static;
		margin-top: 20px;
	}

	.brand-logo {
		width: 200px;
		height: 156px;
	}
}
@media only screen and (max-width: 480px) {
	.main-container{
		flex-direction:column-reverse;
	}
	.right-section{
		height:auto;
		padding:20px 0px;	
	}
	.brand-logo{
		width:30%;
		height:auto;
	}
	.left-section{
		justify-content:start;
		padding:0px;
	}
	.support-info{
		width:auto;
		height:auto;
	}
	.support-text{
		text-align:center;
		width:auto;
		height:auto;	
	}
	.mobile-input{
		width:75%;
	}
	#requestOtpBtn{
		width:75%;
	}
	.left-section-inner{
		text-align:center;
	}
	.login-title{
		text-align:center;
		font-size:24px;
                height:32px;
                line-height:32px;
	}
	.console-subtitle{
		text-align:center;
		width:auto;
	}
	.otp-title{
		text-align:center;
		font-size:24px;
		height:32px;
		line-height:32px;
	}
	.otp-subtitle{
		text-align:center;
		width:auto;
		padding:0 5%;
	}
	.resend-otp-link{
		margin-right:12%;
	}
	.help-divider{
		width:80%;
	}
}
