.login {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	padding: 40px 24px;
}

.login-container {
	/*       background: #fff; */
	border-radius: 12px;
	/*       box-shadow: 0 0 12px rgba(0, 0, 0, 0.05); */
	width: 100%;
	max-width: 420px;
	padding: 0;
}

.login-illustration {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	aspect-ratio: 16 / 9;
}

.login-illustration-figure {
	max-width: 100%;
	flex-shrink: 0;
	height: 100%;
	flex-grow: 0;
	flex-basis: 100%;
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.login-signin {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.login-signin-input {
	border: none;
	border-radius: 0;
	border-bottom: 1px solid var(--color-n400);
}

.login-signin-input.field-input-error {
	border-color: #BF2600;
}

.login-signin-btn {
	width: 100%;
	font-weight: 600;
}

.login-signin-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.login-signin-links a {
	color: var(--portal-color-primary);
}

.login-signin-terms a {
	color: var(--portal-color-primary);
}

/* MEDIA QUERY: para pantallas grandes (desde 1024px en adelante) */
@media (min-width: 1024px) {
	.login-container {
		display: flex;
		flex-direction: row;
		align-items: center;
		max-width: 1160px;
		padding: 0;
	}

	.login-illustration {
		flex: 2;
		align-items: flex-end;
		justify-content: center;
		padding: 2rem;
		margin-bottom: 0;
	}

	.login-signin {
		flex: 0 0 434px;
		padding: 0 32px;
	}

}

