* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background: #efeff4;
}

.loginWrapper {
	min-height: 100vh;
}

.leftPanel {
	background: linear-gradient(180deg, #0c7b34, #b76511);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #fff;
}

.logoBox img {
	width: 190px;
}

.helpdeskImage img {
	width: 320px;
}

.helpDesk {
	text-align: center;
	margin-top: 30px;
	font-size: 18px;
}

.helpDesk i {
	color: #ff2fa8;
}

.rightPanel {
	display: flex;
	justify-content: center;
	align-items: center;
}

.loginCard {
	width: 100%;
	max-width: 500px;
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.loginTitle h2 {
	text-align: center;
	color: #394f95;
	font-size: 38px;
}

.loginTitle p {
	text-align: center;
	color: #666;
}

.form-control {
	height: 50px;
	font-size: 16px;
}

.dobFields {
	display: flex;
	gap: 10px;
}

.signBtn {
	width: 100%;
	height: 50px;
	background: #8f9700;
	color: #fff;
	border: none;
	font-size: 18px;
	margin-top: 10px;
}

.signBtn:hover {
	background: #727900;
}