body {
	margin: 10px auto;
	max-width: 1050px !important;
}

.home_container {
	max-width: 1200px;
	width: 100%;
	margin: 20px 0 0 0;
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 60px;
	align-items: start;
	background: transparent;
}

.home_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	gap: 10px;
}

.home_title {
	font-size: 30px;
	font-weight: 500;
	color: #282e33;
	letter-spacing: -0.3px;
	line-height: 1.2;
	text-align: center;
}

.home_about {
	font-size: 16px;
	color: #5b5f65;
	line-height: 1.5;
	text-align: center;
}

.home_image {
	text-align: center;
}

.home_image img {
	width: 100%;
	max-width: 300px;
	margin-top: 12px;
}

.home_auth {
	width: 100%;
}

.auth-card {
	background: #ffffff;
	border-radius: 15px;
	padding: 24px;
	border: 1px solid #d7d7d7;
}

.forgot {
	text-align: right;
	font-size: 13px;
	margin: 2px 0 10px 0;
}

.forgot a {
	color: #1877f2;
	text-decoration: none;
	font-weight: 500;
}

.forgot a:hover {
	text-decoration: underline;
}

.andTitle {
	text-align: center;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: #8a8d91;
	margin: 10px 0 15px 0;
}

.andTitle::before,
.andTitle::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #dadde1;
}

.google-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 11px 12px;
	border: 1px solid #dadce0;
	border-radius: 40px;
	background: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	color: #1f1f1f;
	transition: background 0.2s, box-shadow 0.2s;
	margin-bottom: 20px;
}

.google-btn:hover {
	background: #f7f8fa;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.register {
	text-align: center;
	font-size: 14px;
	color: #4e535c;
}

.register a {
	color: #1877f2;
	text-decoration: none;
	font-weight: 600;
}

.register a:hover {
	text-decoration: underline;
}

.auth_title {
	margin-bottom: 10px;
	font-size: 25px;
	text-align: center;
}

.mobile-home-header {
	display: none;
	text-align: center;
	margin-bottom: 20px;
}

.mobile-home-header .home_title {
    color: #137ad4;
    font-size: 40px;
    font-weight: 600;
}

.mobile-home-header .home_about {
	font-size: 18px;
	margin-top: 5px;
}

@media (max-width: 860px) {
	body {
		margin: auto !important;
	}

	.home_container {
		grid-template-columns: 1fr;
		gap: 0;
		max-width: 460px;
		margin: 0 auto;
	}

	.home_content {
		display: none;
	}

	.mobile-home-header {
		display: block;
	}

	.home_auth {
		width: 100%;
	}

	.home_about {
		font-size: 16px;
	}

	.auth-card {
		border-radius: 0;
		box-shadow: none;
		border: none;
	}
}

@media (min-width: 1300px) {
	.home_container {
		gap: 70px;
	}
}

@media (max-width: 980px) and (min-width: 861px) {
	.home_container {
		gap: 24px;
		grid-template-columns: 1fr 360px;
	}

	.home_image img {
		max-width: 300px;
	}
}