/* ===============================
   LOGIN PAGE MODERN
   Arquivo: login-style.css
================================ */

.login-page {
	position: relative;
	z-index: 20;
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: visible;
}

.login-wrapper {
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
	position: relative;
}

/* ===============================
   TITULO
================================ */

.login-title {
	margin-bottom: 8px;
	font-size: 54px;
	line-height: 1.05;
	font-weight: 950;
	letter-spacing: 0.5px;
	color: #fff;
	text-shadow:
		0 0 10px rgba(183, 31, 31, 0.80),
		0 0 24px rgba(183, 31, 31, 0.40),
		0 3px 8px rgba(0, 0, 0, 0.75);
}

.login-subtitle {
	max-width: 540px;
	margin: 18px auto 34px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
	line-height: 1.65;
	font-weight: 700;
}

/* ===============================
   PAINEL
================================ */

.login-panel {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 34px;
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(6, 6, 6, 0.97));
	border: 1px solid rgba(183, 31, 31, 0.30);
	box-shadow:
		0 18px 42px rgba(0, 0, 0, 0.52),
		0 0 24px rgba(183, 31, 31, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.login-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at top left, rgba(183, 31, 31, 0.18), transparent 36%),
		radial-gradient(circle at bottom right, rgba(212, 55, 55, 0.10), transparent 35%);
	z-index: 1;
}

.login-panel > * {
	position: relative;
	z-index: 2;
}

/* ===============================
   HEADER DO PAINEL
================================ */

.login-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 28px;
	padding: 18px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.075);
}

.login-info {
	display: flex;
	align-items: center;
	gap: 16px;
	text-align: left;
}

.login-info > i {
	width: 56px;
	height: 56px;
	min-width: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background: rgba(183, 31, 31, 0.16);
	border: 1px solid rgba(183, 31, 31, 0.34);
	color: #d43737;
	font-size: 27px;
	filter: drop-shadow(0 0 8px rgba(183, 31, 31, 0.45));
}

.login-info h3 {
	margin: 0 0 4px;
	color: #fff;
	font-size: 21px;
	font-weight: 950;
	letter-spacing: 0.25px;
}

.login-info span {
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

/* ===============================
   FORMULARIO
================================ */

.login-form {
	width: 100%;
	text-align: left;
}

.login-field {
	margin-bottom: 20px;
}

.login-label {
	display: block;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.35px;
}

.login-input-group {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	border-radius: 13px;
	background: rgba(0, 0, 0, 0.34);
	border: 1px solid rgba(255, 255, 255, 0.10);
	overflow: hidden;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.login-input-group:focus-within {
	background: rgba(0, 0, 0, 0.46);
	border-color: rgba(212, 55, 55, 0.52);
	box-shadow:
		0 0 0 3px rgba(183, 31, 31, 0.12),
		0 0 18px rgba(183, 31, 31, 0.14);
}

.login-input-icon {
	width: 54px;
	min-width: 54px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #d43737;
	font-size: 20px;
	background: rgba(183, 31, 31, 0.08);
	border-right: 1px solid rgba(255, 255, 255, 0.075);
	filter: drop-shadow(0 0 7px rgba(183, 31, 31, 0.32));
}

.login-input {
	width: 100%;
	height: 52px;
	padding: 0 16px;
	background: transparent;
	border: 0;
	outline: none;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
}

.login-input::placeholder {
	color: rgba(255, 255, 255, 0.42);
}

.login-password-toggle {
	width: 52px;
	min-width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.075);
	color: rgba(255, 255, 255, 0.68);
	font-size: 19px;
	cursor: pointer;
	transition:
		color 0.2s ease,
		background 0.2s ease;
}

.login-password-toggle:hover {
	background: rgba(183, 31, 31, 0.10);
	color: #fff;
}

/* ===============================
   CAPTCHA
================================ */

.login-captcha {
	display: flex;
	justify-content: center;
	margin: 26px 0 12px;
}

/* ===============================
   BOTAO
================================ */

.login-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 52px;
	margin-top: 16px;
	padding: 11px 20px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	background:
		linear-gradient(180deg, #d43737, #8f1515);
	color: #fff !important;
	font-size: 15px;
	font-weight: 950;
	letter-spacing: 0.35px;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow:
		0 9px 20px rgba(0, 0, 0, 0.35),
		0 0 16px rgba(183, 31, 31, 0.24);
	cursor: pointer;
	transition:
		transform 0.2s ease,
		filter 0.2s ease,
		box-shadow 0.2s ease;
}

.login-submit-btn i {
	font-size: 17px;
}

.login-submit-btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.08);
	box-shadow:
		0 13px 26px rgba(0, 0, 0, 0.45),
		0 0 22px rgba(183, 31, 31, 0.32);
}

/* ===============================
   LINKS
================================ */

.login-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 13px;
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.075);
	text-align: center;
}

.login-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	color: rgba(255, 255, 255, 0.76) !important;
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.login-links a i {
	color: #d43737;
	font-size: 16px;
	filter: drop-shadow(0 0 7px rgba(183, 31, 31, 0.35));
}

.login-links a:hover {
	color: #fff !important;
	transform: translateY(-1px);
}

/* ===============================
   RECAPTCHA AJUSTE
================================ */

.g-recaptcha {
	max-width: 100%;
}

/* ===============================
   RESPONSIVO
================================ */

@media (max-width: 991px) {
	.login-page {
		padding-top: 45px;
		padding-bottom: 60px;
	}

	.login-wrapper {
		max-width: 600px;
	}

	.login-title {
		font-size: 46px;
	}

	.login-subtitle {
		font-size: 16px;
	}

	.login-panel {
		padding: 28px;
	}

	.login-panel-header {
		text-align: center;
	}

	.login-info {
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.login-page {
		padding-top: 32px;
		padding-bottom: 45px;
	}

	.login-wrapper {
		max-width: 100%;
	}

	.login-title {
		font-size: 38px;
	}

	.login-subtitle {
		font-size: 14px;
		margin-bottom: 24px;
	}

	.login-panel {
		padding: 18px;
		border-radius: 15px;
	}

	.login-panel-header {
		padding: 14px;
		border-radius: 13px;
	}

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

	.login-info > i {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 24px;
	}

	.login-info h3 {
		font-size: 18px;
	}

	.login-info span {
		font-size: 13px;
	}

	.login-field {
		margin-bottom: 17px;
	}

	.login-label {
		font-size: 13px;
	}

	.login-input-icon,
	.login-password-toggle {
		width: 48px;
		min-width: 48px;
		height: 48px;
		font-size: 18px;
	}

	.login-input {
		height: 48px;
		font-size: 14px;
	}

	.login-submit-btn {
		min-height: 49px;
		font-size: 14px;
	}

	.login-links a {
		font-size: 13px;
	}

	.login-links a i {
		font-size: 15px;
	}

	.g-recaptcha {
		transform: scale(0.88);
		transform-origin: center;
	}
}