* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Segoe UI", sans-serif;
}

body {
	display: flex;
	height: 100vh;
}


/* Bagian kiri (form login) */
.login-left {
	flex: 1;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-form {
	width: 100%;
	max-width: 350px;
	text-align: center;
}

.login-form img.logo {
	width: 60px;
	margin-bottom: 15px;
}

.login-form h2 {
	margin-bottom: 40px;
	font-size: 1.2rem;
	color: #333;
}

.input-group {
	margin-bottom: 20px;
	text-align: left;
	position: relative;
}

.input-group input {
	width: 100%;
	padding: 12px 40px 12px 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}

.input-group input:focus {
	outline: none;
	border-color: #ff6600;
}

.input-group .toggle-password {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	font-size: 16px;
	color: #666;
}

.login-form button {
	margin-top: 20px;
	width: 40%;
	background: #ff6600;
	border: none;
	padding: 12px;
	font-size: 15px;
	font-weight: bold;
	color: white;
	border-radius: 20px;
	cursor: pointer;
	transition: 0.3s;
}

.login-form button:hover {
	background: #e65c00;
}

/* Bagian kanan (gambar) */
.login-right {
    flex: 0.6;
    background: #ff6600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-content {
    display: flex;
    flex-direction: column;
    align-items: center;   
    text-align: center;
    color: white;
}

.right-content img {
    width: 350px;   
    height: auto;   
    margin-bottom: 8px; 
}

.clbk-text {
    font-family: 'Poppins', sans-serif;
}

.clbk-text h3 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 8px;
}

.clbk-text p {
    font-size: 14px;
    margin: 4px 0;
    color: #fff;
}

/* Warna huruf */
.clbk-text .c { color: green; font-size: 22px; font-weight: 700;}
.clbk-text .l { color: yellow; font-size: 22px; font-weight: 700;}
.clbk-text .b { color: red; font-size: 22px; font-weight: 700;}
.clbk-text .k { color: blue; font-size: 22px; font-weight: 700;}

.btn-back {
    display: inline-block;
    align-items: center;
	margin-left: 10px;
    gap: 8px;
   background: #ff6600;
    color: white;
	width: 40%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: 0.25s ease;
}

.btn-back span{
	text-align: center
}

.btn-back:hover {
    background: #e65c00;
}

@media (max-width: 768px) {
	.login-left {
		flex: 1;
		padding: 20px;
	}

	.login-form {
		max-width: 300px;
	}

	.login-right {
		flex: 0.4; 
		padding: 10px;
	}

	.login-right img {
		width: 80%;
		height: auto;
	}
}

@media (max-width: 480px) {
	body {
		display: flex;
		justify-content: center;
        align-items: center;
		min-height: 100vh;
		background: linear-gradient(180deg, #ff6e00 0%, #994200 100%);
		margin: 0;
		font-family: "Poppins", sans-serif;
	}

	.login-left {
		background: transparent !important;
		box-shadow: none !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.login-form {
		background: #fff;
		padding: 30px 20px;
		border-radius: 20px; 
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
		width: 85%;
		max-width: 360px;
		text-align: center;
	}

	.login-form img.logo {
		width: 80px; 
		margin-bottom: 15px;
	}

	.login-form h2 {
		font-size: 1rem;
		font-weight: 600;
		color: #333;
		margin-bottom: 25px;
	}

	.input-group {
		width: 100%;
		margin-bottom: 15px;
		position: relative;
	}

	.input-group input {
		width: 100%;
		padding: 12px 45px 12px 15px;
		border: 1px solid #ccc;
		border-radius: 8px;
		font-size: 14px;
		outline: none;
	}

	.input-group .toggle-password {
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		cursor: pointer;
		font-size: 16px;
		color: #666;
	}

	.login-form button {
		width: 100%;
		padding: 12px;
		background: #ff6e00;
		color: #fff;
		font-size: 15px;
		font-weight: 600;
		border: none;
		border-radius: 25px; 
		cursor: pointer;
		transition: 0.3s;
	}

	.login-form button:hover {
		background:#e65c00;
	}

	.login-right img {
		display: none;
	}

	.login-right {
		display: none;
	}

	.login-form form {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}

	.login-form form .input-group {
		width: 100%;
	}

	
	.login-form form button,
	.login-form form .btn-back {
		flex: 1 1 calc(50% - 5px);
		width: auto !important;
		margin: 0 !important;
	}

	
	.btn-back {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		padding: 12px;
		border-radius: 25px;
		font-size: 14px;
		font-weight: 600;
		text-decoration: none;
	}

}