@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #3C91E6;
	--secondary: #FD7238;
	--dark: #2c3e50;
	--light: #ffffff;
	--grey: #ecf0f1;
}

html,
body {
	height: 100%;
	overflow: hidden;
}

body {
	font-family: 'Poppins', sans-serif;
	display: flex;
	flex-direction: column;
}

/* NAVBAR */
.top-navbar {
	background: var(--light);
	padding: 0;
	width: 100%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 30px;
}

.logo img {
	height: 55px;
	width: auto;
}

.nav-links {
	display: flex;
	gap: 12px;
	align-items: center;
}

.nav-links a {
	color: var(--dark);
	text-decoration: none;
	padding: 8px 18px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.3s ease;
}

.nav-links a.nav-btn:hover {
	background: rgba(0, 0, 0, 0.05);
}

.nav-links a.nav-btn.active {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
}

/* LOGIN SECTION */
.login-section {
	flex: 1;
	background: linear-gradient(135deg, #3C91E6 0%, #FD7238 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.login-container {
	width: 100%;
	max-width: 450px;
}

.login-box {
	background: var(--light);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	padding: 40px;
	animation: slideUp 0.6s ease;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.login-header {
	text-align: center;
	margin-bottom: 30px;
}

.logo-circle {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 4px 15px rgba(60, 145, 230, 0.3);
}

.logo-circle i {
	font-size: 45px;
	color: white;
}

.login-header h2 {
	font-size: 2rem;
	color: var(--dark);
	margin-bottom: 8px;
	font-weight: 700;
}

.login-header p {
	color: #666;
	font-size: 0.95rem;
}

/* FORM */
.login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.input-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.input-group label {
	font-weight: 600;
	color: var(--dark);
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 6px;
}

.input-group label i {
	color: var(--primary);
	font-size: 1.1rem;
}

.input-group input {
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 0.95rem;
	font-family: 'Poppins', sans-serif;
	transition: all 0.3s ease;
	outline: none;
}

.input-group input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(60, 145, 230, 0.1);
}

.input-group input::placeholder {
	color: #aaa;
}

.login-btn {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	border: none;
	padding: 14px;
	border-radius: 10px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	margin-top: 10px;
	font-family: 'Poppins', sans-serif;
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(60, 145, 230, 0.4);
}

.login-btn:active {
	transform: translateY(0);
}

.login-btn i {
	font-size: 1.3rem;
}

/* FOOTER */
footer {
	background: var(--dark);
	color: white;
	text-align: center;
	padding: 18px;
	flex-shrink: 0;
}

footer p {
	margin: 0;
	font-size: 13px;
}

/* RESPONSIVE */
@media (max-height: 700px) {
	.login-box {
		padding: 30px;
	}

	.logo-circle {
		width: 70px;
		height: 70px;
		margin-bottom: 15px;
	}

	.logo-circle i {
		font-size: 38px;
	}

	.login-header h2 {
		font-size: 1.6rem;
		margin-bottom: 5px;
	}

	.login-header {
		margin-bottom: 20px;
	}

	.login-form {
		gap: 15px;
	}
}

@media (max-width: 768px) {
	.login-section {
		padding: 30px 15px;
	}

	.login-box {
		padding: 30px 25px;
	}

	.nav-container {
		flex-direction: column;
		gap: 10px;
		padding: 10px 20px;
	}

	.logo img {
		height: 45px;
	}
}

@media (max-width: 480px) {
	.login-box {
		padding: 25px 20px;
	}

	.login-header h2 {
		font-size: 1.5rem;
	}

	.logo-circle {
		width: 65px;
		height: 65px;
	}

	.logo-circle i {
		font-size: 35px;
	}
}