/* Reset and Font */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.login-container {
	width: 100%;
	max-width: 400px;
	padding: 20px;
	text-align: center;
}

/* Logo */
.logo img {
	width: 300px; /* Sesuaikan ukuran logo */
	margin-bottom: 30px;
}

h1 {
	font-size: 42px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

/* Form Styling */
.input-group {
	text-align: left;
	margin-bottom: 25px;
}

.input-group label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
}

.input-group input {
	width: 100%;
	padding: 15px;
	border: 1.5px solid #018005; 
	border-radius: 12px;
	font-size: 14px;
	outline: none;
	transition: 0.3s;
}

.input-group input::placeholder {
	color: #b0b0b0;
}

/* Links Section */
.links-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 13px;
	margin-bottom: 80px;
}

.left-link {
	text-align: left;
	color: #333;
}

.left-link a, .right-link a {
	color: #018005;
	text-decoration: none;
	font-weight: 500;
}

.right-link {
	padding-top: 2px;
}

.btn-masuk {
	width: 100%;
	background-color: #018005;
	color: white;
	border: none;
	padding: 16px;
	font-size: 20px;
	font-weight: 700;
	border-radius: 12px;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(74, 141, 248, 0.4); /* Efek shadow lembut */
	transition: transform 0.1s ease;
}

.btn-masuk:active {
	transform: scale(0.98);
}

.pic-expand {
	image-orientation: center;
}
