* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;
}

body {
	background: #FFFFFF;
	color: #111827;
}

/* ======================
   LAYOUT
====================== */
.login-layout {
	display: flex;
	min-height: 100vh;
}

/* ======================
   LEFT
====================== */
.login-left {
	flex: 1;
	padding: 40px 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* LOGO */
.login-left-header img {
	max-width: 180px;
	margin-bottom: 32px;
}

/* CONTEÚDO */
.login-left-content {
	min-width: 350px;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	margin: auto 0;
	transform: translateY(-4%);
}

/* TEXTOS */
.subtitle {
	font-size: 0.95rem;
	color: #6B7280;
	margin-bottom: 6px;
}

.impact {
	font-size: 0.9rem;
	color: #6B7280;
	margin-bottom: 28px;
}

/* TÍTULO */
.login-title {
	font-size: 1.4rem;
	margin-bottom: 28px;
}

/* FORM */
.login-form {
	display: flex;
	flex-direction: column;
	margin-top: 16px;
}

/* ERRO */
.login-error {
	display: none;
	background: #FEE2E2;
	color: #B91C1C;
	padding: 10px;
	border-radius: 8px;
	font-size: 0.9rem;
	margin-bottom: 14px;
}

.login-error[data-erro="true"] {
	display: block;
}

/* INPUT */
.input-wrapper {
	position: relative;
	width: 100%;
	margin-bottom: 14px;
}

.input-wrapper input {
	width: 100%;
	height: 48px;
	background: #f5f9fe;
	border: 1px solid transparent;
	border-radius: 10px;
	padding: 0 44px 0 16px;

	/* iOS fix */
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

.input-wrapper input:focus {
	outline: none;
	border-color: #3461FD;
}

.input-wrapper input::placeholder {
	font-size: 16px;
	color: #9CA3AF;
	opacity: 1;
}

/* TOGGLE PASSWORD */
.toggle-password {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: #6B7280;
	padding: 0;
	display: flex;
	align-items: center;
}

.toggle-password svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.eye-open {
	display: none;
}

/* LINKS */
.forgot {
	text-align: right;
	margin-bottom: 20px;
}

.forgot a {
	font-size: 0.85rem;
	color: #6B7280;
	text-decoration: none;
}

/* BOTÃO */
.btn-login {
	width: 100%;
	height: 52px;
	background: #3461FD;
	color: #FFFFFF;
	border: none;
	border-radius: 14px;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 20px;
	cursor: pointer; /* 👈 AQUI */
}

/* SIGNUP */
.signup {
	font-size: 0.9rem;
	color: #6B7280;
}

.signup a {
	color: #3461FD;
	text-decoration: none;
}

/* ======================
   RIGHT
====================== */
.login-right {
	flex: 1;
	background: linear-gradient(135deg, #1F2933, #111827);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
}

.login-right-content {
	max-width: 420px;
}

.branding-logo {
	max-width: 100px;
	margin-bottom: 20px;
}

/* VISIBILIDADE */
.mobile-only {
	display: none;
}

/* ======================
   MOBILE
====================== */
@media (max-width: 900px) {

	.login-layout {
		flex-direction: column;
	}

	.login-right {
		display: none;
	}

	.login-left {
		padding: 24px;
	}

	.login-left-content {
		min-width: unset;
		max-width: 100%;
		margin: 0;
		transform: none;
	}

	.mobile-only {
		display: block;
	}
}
