.cl-login-modal {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	width: min(860px, 96vw);
	min-height: 500px;
	border-radius: 32px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 30px 90px rgba(0,0,0,.35);
	border: 1px solid rgba(255,255,255,.7);
}

.cl-login-left {
	padding: 35px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background:
		linear-gradient(160deg, rgba(23,32,20,.95), rgba(66,95,50,.82), rgba(128,88,50,.75)),
		url(https://images.unsplash.com/photo-1500595046743-cd271d694d30?auto=format&fit=crop&w=1200&q=80);
	background-size: cover;
	background-position: center;
}

.cl-logo {
	font-size: 24px;
	font-weight: 900;
	color: #f0c96d;
}

.cl-login-left h2 {
	font-size: 38px;
	line-height: 1.1;
	margin-bottom: 12px;
}

.cl-login-left p {
	color: rgba(255,255,255,.72);
	line-height: 1.7;
}

.cl-server-status {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	padding: 12px 16px;
	border-radius: 999px;
	background: rgba(255,255,255,.13);
	color: #ffe3a3;
	font-weight: 800;
}

.cl-server-status span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #8df45d;
	box-shadow: 0 0 0 7px rgba(141,244,93,.14);
}

.cl-login-right {
	padding: 38px;
}

.cl-login-right h3 {
	font-size: 32px;
	color: #425f32;
	margin-bottom: 6px;
}

.cl-desc {
	color: #7b735f;
	margin-bottom: 26px;
}

.cl-field {
	margin-bottom: 18px;
}

.cl-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 900;
	color: #24301f;
}

.cl-field .textbox {
	width: 100%;
	height: 52px;
	border-radius: 17px;
	border: 1px solid rgba(66,95,50,.22);
	background: #fbf7ee;
	padding: 0 16px;
	outline: none;
	font-size: 15px;
}

.cl-field .textbox:focus {
	border-color: #d9a441;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(217,164,65,.16);
}

.lost_password {
	display: inline-block;
	margin-top: 9px;
	color: #425f32;
	font-weight: 800;
	text-decoration: none;
}

.cl-options {
	margin: 18px 0 24px;
}

.cl-remember {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #7b735f;
	font-weight: 700;
}

.cl-remember input {
	accent-color: #425f32;
}

.cl-login-btn {
	width: 100%;
	height: 54px;
	border: 0;
	border-radius: 18px;
	background: linear-gradient(135deg, #d9a441, #f0c96d);
	color: #2c210b;
	font-weight: 900;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 16px 35px rgba(217,164,65,.32);
}

.cl-register-box {
	margin-top: 20px;
	padding: 15px;
	border-radius: 18px;
	background: #f2eadb;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: #7b735f;
}

.cl-register-box a {
	color: #425f32;
	font-weight: 900;
	text-decoration: none;
}

@media (max-width: 760px) {
	.cl-login-modal {
		grid-template-columns: 1fr;
}

.cl-login-left {
		min-height: 220px;
}

.cl-register-box {
		flex-direction: column;
}


}


		
		