.login-signup {
	background: url("../img/auth-bg.jpg");
	min-height: 100vh;
	display: flex;
	align-items: center;
	width: 100%;
	background-size: cover;
	background-position: right;
	position: relative;
	padding: 80px 0;
}

.login-signup::after {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #4eb711;
	content: "";
	opacity: 0.8;
}

.login-inr {
	background: #fff;
	position: relative;
	z-index: 99;
	width: 100%;
	margin: 0 auto;
	border-radius: 0px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	min-height: 514px;
}

.login-form {
	background: #fff;
	padding: 80px;
	border-radius: 0;
	position: relative;
	z-index: 2;
	min-height: 514px;
	height: 100%;
	display: flex;
	align-items: center;
}

.btn.btn-login {
	width: 100%;
	background: var(--primary-color);
	color: var(--white-color);
	padding: 10px;
	transition: all 0.3s ease-in-out;
}

.btn.btn-login:hover {
	background: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.login-form .form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-check-input:focus {
	box-shadow: none;
}

.login-lft {
	background: url("../img/auth-image.jpg");
	height: 100%;
	background-size: cover;
	width: 100%;
	background-position: center;
	padding: 80px;
	display: flex;
	align-items: start;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	overflow: hidden;
	flex-direction: column;
	text-align: start;
}

.login-lft:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	z-index: -1;
	opacity: 0.5;
}

.login-lft .text-info .typing>* {
	overflow: hidden;
	white-space: nowrap;
	animation: typingAnim 3s steps(50);
	text-transform: uppercase;
}

@keyframes typingAnim {
	from {
		width: 0;

	}

	to {
		width: 100%;
	}

}

.login-lft .text-info .typing h1 {
	color: #fff;
	font-size: 35px;
	margin-bottom: 20px;
	font-weight: 700;
}

.login-lft .text-info p {
	color: #fff;
	margin: 0;
}

.eye-toggle {
	position: absolute;
	right: 25px;
	top: 43px;
}

.login-form .custom-form .form-label {
	font-size: 14px;
}

.login-form .custom-form .form-control {
	min-height: 45px;
	border-radius: 4px;
	font-size: 14px;
	color: #000;
}

.login-form input[type="password"] {
	padding-right: 60px;
}

.custom-radios {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	flex-wrap: wrap;
}

.custom-radios .radio-input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.custom-radios .radio-label {
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 13px;
	border: 1px solid #eee;
	background: #eee;
	color: #101010;
	border-radius: 0;
	cursor: pointer;
	min-width: 140px;
	text-align: center;
	font-weight: 500;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.custom-radios .radio-input:checked+.radio-label {
	background: #28a745;
	border-color: #28a745;
	color: #fff;
}

.forgot-btn {
	color: #4D4D4D;
}

.forgot-btn:hover {
	color: var(--primary-color);
}

.already-text a {
	color: #4D4D4D;
}

.already-text a:hover {
	color: var(--primary-color);
}

.mb-3.field-exampleCheck1 {
	margin-bottom: 0 !important;
}

@media (max-width : 768px) {
	.login-form {
		padding: 20px;
		min-height: auto;
	}

	.login-lft {
		padding: 20px;
	}

	.login-lft .text-info .typing h1 {
		font-size: 25px;
		margin-bottom: 10px;
	}
}

@media (max-width : 575px) {
	.login-lft .text-info .typing h1 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.login-lft .text-info p {
		font-size: 14px;
	}
}