* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
	background: #f7f8fb;
	color: #3f6f33;
}

.login-page {
	min-height: 100vh;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	background: #f7f8fb;
}

.login-hero {
	position: relative;
	background: url('../img/telalogin.webp') center center/cover no-repeat;
	min-height: 50vh;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgb(1, 102, 15), rgba(15, 42, 19, 0.55));
}

.hero-content {
	position: relative;
	color: #fff;
	padding: clamp(2rem, 6vw, 4rem);
	max-width: 420px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .35rem .85rem;
	background: rgba(255,255,255,0.15);
	border-radius: 999px;
	font-size: .85rem;
	letter-spacing: .4px;
}

.hero-content h2 {
	margin: 1.2rem 0 .5rem;
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	font-weight: 600;
}

.hero-content p {
	margin: 0;
	opacity: .85;
	line-height: 1.6;
}

.login-panel {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(2rem, 5vw, 4rem);
}

.panel-content {
	width: min(420px, 100%);
	background: #fff;
	border-radius: 28px;
	padding: clamp(2rem, 4vw, 3rem);
	border: 1px solid #eceff5;
}

.welcome-text h1 {
	margin: 0 0 .4rem;
	font-size: 1.95rem;
	font-weight: 600;
}

.welcome-text h1 span {
	font-size: 1.9rem;
}

.welcome-text p {
	margin: 0 0 1.8rem;
	color: #64748b;
}

.login-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.input-label {
	font-size: .9rem;
	font-weight: 600;
	color: #475569;
}

.input-field {
	display: flex;
	align-items: center;
	gap: .75rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: .4rem 1rem;
}

.input-field span {
	color: #475569;
}

.input-field input {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 1rem;
	padding: .85rem 0;
	color: #3f6f33;
}

.input-field input:focus {
	outline: none;
}

.form-links {
	text-align: right;
}

.form-links a {
	color: #3f6f33;
	font-weight: 600;
	text-decoration: none;
}

.btn-login {
	margin-top: .5rem;
	border: none;
	background: #3f6f33;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 16px;
	padding: 1rem;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.btn-login:hover {
	background: #3f6f33;
	transform: translateY(-2px);
}

.login-footer {
	margin-top: 1.5rem;
	text-align: center;
	color: #94a3b8;
	font-size: .9rem;
}

@media (max-width: 860px) {
	.login-page {
		grid-template-columns: 1fr;
	}
	.login-hero {
		min-height: 320px;
	}
}