html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.acte-body {
	margin: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(255,255,255,0.10), transparent 22%),
		radial-gradient(circle at 85% 80%, rgba(255,255,255,0.06), transparent 20%),
		linear-gradient(135deg, #0c2e00 0%, #195300 55%, #2f7a10 100%);
	color: #1d1d1d;
}

.acte-screen {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.acte-card {
	width: 100%;
	max-width: 980px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.acte-left {
	padding: 56px 44px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(180deg, rgba(25, 83, 0, 0.05), rgba(25, 83, 0, 0.10));
	border-right: 1px solid rgba(25, 83, 0, 0.10);
}

.acte-school-logo-wrap {
	width: 100%;
	min-height: 190px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.acte-school-logo {
	max-width: 240px;
	max-height: 170px;
	object-fit: contain;
}

.acte-school-title {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	color: #195300;
}

.acte-right {
	padding: 56px 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.acte-mercante-logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}

.acte-mercante-logo {
	max-width: 170px;
	max-height: 60px;
	object-fit: contain;
}

.acte-intro {
	text-align: center;
	margin-bottom: 24px;
}

.acte-eyebrow {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #195300;
	margin-bottom: 8px;
}

.acte-description {
	font-size: 1rem;
	color: #5f6b63;
}

.acte-error {
	margin-bottom: 18px;
	padding: 12px;
	border-radius: 10px;
	background: #fdecec;
	color: #b42318;
	text-align: center;
}

.acte-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.acte-input {
	height: 54px;
	padding: 0 16px;
	border: 1px solid #cfd8d1;
	border-radius: 12px;
	font-size: 1rem;
}

.acte-input:focus {
	border-color: #195300;
	box-shadow: 0 0 0 3px rgba(25, 83, 0, 0.15);
	outline: none;
}

.acte-button {
	height: 54px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(180deg, #1f6a05 0%, #195300 100%);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.acte-button:hover {
	background: #143f00;
}

@media (max-width: 860px) {
	.acte-card {
		grid-template-columns: 1fr;
	}

	.acte-left {
		border-right: 0;
		border-bottom: 1px solid rgba(25, 83, 0, 0.10);
	}
}