@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background: #f5f7fc;
	overflow-x: hidden;
	height: 100vh;
}

.main-wrapper {
	height: 100vh;
}

/* LEFT PANEL */
.left {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px;
	background: linear-gradient(135deg, #4f46e5, #6366f1, #8b5cf6);
	position: relative;
	overflow: hidden;
	color: white;
}

.left::before {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, .08);
	border-radius: 50%;
	top: -150px;
	right: -100px;
}

.left::after {
	content: '';
	position: absolute;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, .08);
	border-radius: 50%;
	bottom: -90px;
	left: -50px;
}

.left-content {
	max-width: 500px;
	position: relative;
	z-index: 2;
}

.logo {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
}

.logo i {
	color: #FFD43B;
	margin-right: 10px;
}

.left h1 {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 15px;
}

.left p {
	font-size: 16px;
	line-height: 1.6;
	opacity: .95;
}

.left img {
	width: 100%;
	max-width: 280px;
	max-height: 220px;
	object-fit: contain;
	display: block;
	margin: 25px auto 0;
	animation: float 3.5s infinite ease-in-out;
}

@keyframes float { 0% {
	transform: translateY(0);
}

50%
{
transform
:
translateY(
-10px
);
}
100%
{
transform
:
translateY(
0
);
}
}

/* RIGHT PANEL */
.right {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px;
	background: white;
}

.login-card {
	width: 100%;
	max-width: 420px;
	padding: 35px;
	background: white;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
	transition: .3s;
}

.login-card:hover {
	transform: translateY(-4px);
}

.login-card h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 6px;
}

.login-card p {
	color: #666;
	margin-bottom: 22px;
	font-size: 15px;
}

.input-group {
	position: relative;
	margin-bottom: 18px;
}

.input-group i:first-child {
	position: absolute;
	left: 18px;
	top: 17px;
	color: #888;
	z-index: 10;
}

.form-control {
	height: 52px;
	padding-left: 48px;
	padding-right: 48px;
	border-radius: 12px;
	font-size: 15px;
}

.form-control:focus {
	border-color: #6366f1;
	box-shadow: 0 0 0 .20rem rgba(99, 102, 241, .18);
}

.toggle-password {
	position: absolute;
	right: 18px;
	top: 17px;
	cursor: pointer;
	color: #777;
	z-index: 10;
}

.options {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 22px;
	font-size: 14px;
}

.options a {
	text-decoration: none;
	font-weight: 500;
	color: #4f46e5;
}

.options a:hover {
	text-decoration: underline;
}

.btn-login {
	width: 100%;
	height: 52px;
	border: none;
	border-radius: 12px;
	background: #4f46e5;
	color: white;
	font-size: 16px;
	font-weight: 600;
	transition: .3s;
}

.btn-login:hover {
	background: #3730a3;
	transform: translateY(-2px);
}

.footer {
	margin-top: 22px;
	text-align: center;
}

.footer a {
	text-decoration: none;
	font-weight: 600;
	color: #4f46e5;
	font-size: 14px;
}

/* RESPONSIVE BREAKPOINTS */
@media ( max-width : 1200px) {
	.left h1 {
		font-size: 36px;
	}
	.left p {
		font-size: 15px;
	}
}

@media ( max-width : 992px) {
	body, .main-wrapper {
		height: auto;
		min-height: 100vh;
	}
	.left {
		display: none;
	}
	.right {
		height: 100vh;
		padding: 20px;
	}
	.login-card {
		max-width: 480px;
		box-shadow: none;
		padding: 30px;
	}
}

@media ( max-width : 576px) {
	body {
		background: white;
	}
	.right {
		padding: 15px;
		height: 100vh;
	}
	.login-card {
		padding: 20px;
		border-radius: 15px;
	}
	.login-card h2 {
		font-size: 26px;
		text-align: center;
	}
	.login-card p {
		text-align: center;
		font-size: 14px;
	}
	.form-control, .btn-login {
		height: 48px;
		font-size: 15px;
	}
}