.landing-container {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.landing-image {
	position: relative;
	overflow: hidden;
	background: #f3f5f7;
}

.landing-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.landing-form {
	background: #fff;
	padding: 48px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}

.form-header .logo {
	width: 160px;
	margin-bottom: 16px;
}

.form-header h1 {
	font-size: 1.8rem;
	color: var(--text);
	margin: 0 0 8px;
}

.form-header p {
	color: #5f6368;
	margin: 0 0 16px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-weight: 600;
}

.form-control {
	height: 44px;
	padding: 10px 12px;
	border: 1px solid #dfe1e5;
	border-radius: 8px;
}

.terms-row a {
	color: #000;
}

.btn-submit {
	width: 250px;
	height: 44px;
	border: 0;
	border-radius: 20px;
	background: #00a9e0;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.btn-submit:hover {
	background: #008bb8;
	color: #fff;
}

.terms-note {
	display: inline-block;
	margin-top: 10px;
	color: #5f6368;
	font-size: 0.9rem;
	text-decoration: none;
}

.field-group {
	margin-bottom: 16px;
}

.field-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: 800;
}

.field-input {
	width: 100%;
	height: 44px;
	padding: 10px 12px;
	border: 1px solid #000;
	border-radius: 10px;
	background: #eee;
	outline: none;
}

.field-input::placeholder {
	color: #9aa0a6;
}

.terms-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 12px 0 8px;
}

.terms-row input[type=checkbox] {
	width: 20px;
	height: 20px;
	margin: 0;
	flex-shrink: 0;
	margin-bottom: 5px;
}

.box-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.field-group label::after,
.terms-row label::after { content: ""; }

.field-group.error label::after,
.terms-row.error label::after {
  content: " *";
  color: #d93025;
  font-weight: 700;
  margin-left: 2px;
}

.field-group.error .field-input { border-color: #d93025 !important; }

@media (max-width: 991px) {
	.landing-container {
		grid-template-columns: 1fr;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}
}