.lt-card{
	background: rgba(22, 22, 22, 0.88);
	border-radius: 18px;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(10px);
	box-shadow:
	0 0 90px 42px rgba(0, 0, 0, 0.842),
	0 32px 90px rgba(0, 0, 0, 0.955);
	overflow: hidden;
}
.lt-card:before{
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 42%);
	pointer-events: none;
    visibility: visible;
}

.lt-card:after{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 20%;
	height: 4px;
	background: #e0001c;
	transform: translate(-50%,-2px);
	box-shadow: 0 0 18px rgba(224, 0, 28, 0.8);
    z-index:9999;
    visibility: visible;
}


.ltg-password-wrapper {
	min-height: 72vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(48px, 7vw, 90px) 20px;
	background: #141414;
}

.ltg-password-card {
	width: 100%;
	max-width: 560px;
	background: rgba(22, 22, 22, 0.88);
	border-radius: 18px;
	padding: clamp(38px, 5vw, 68px) clamp(26px, 5vw, 54px);
	text-align: center;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.16);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	box-shadow:
	0 0 90px 42px rgba(0, 0, 0, 0.42),
	0 32px 90px rgba(0, 0, 0, 0.55);
}

.ltg-password-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 42%);
	pointer-events: none;
}

.ltg-password-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 88px;
	height: 2px;
	background: #e0001c;
	transform: translateX(-50%);
	box-shadow: 0 0 18px rgba(224, 0, 28, 0.8);
}

.ltg-password-icon {
	width: 68px;
	height: 68px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.25);
	color: #e0001c;
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 27px;
	position: relative;
	z-index: 1;
}

.ltg-password-card h1 {
	margin: 0 0 14px;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 600;
	color: #ffffff;
	position: relative;
	z-index: 1;
}

.ltg-password-card p {
	max-width: 360px;
	margin: 0 auto 38px;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.64);
	position: relative;
	z-index: 1;
}

.ltg-password-form {
	display: flex;
	flex-direction: column;
	gap: 22px;
	position: relative;
	z-index: 1;
}

.ltg-password-form input[type="password"] {
	width: 100%;
	height: 64px;
	padding: 0 20px;
	border-radius: 11px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 17px;
	background: rgba(8, 8, 8, 0.72);
	color: #ffffff;
	outline: none;
}

.ltg-password-form input[type="password"]::placeholder {
	color: rgba(255, 255, 255, 0.46);
}

.ltg-password-form input[type="password"]:focus {
	border-color: rgba(224, 0, 28, 0.75);
	box-shadow: 0 0 0 3px rgba(224, 0, 28, 0.16);
}

.ltg-password-form button {
	width: 100%;
	min-height: 66px;
	padding: 0 22px;
	border-radius: 11px;
	background: transparent;
	color: #ffffff;
	border: 1px solid #e0001c;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.ltg-password-form button:hover {
	background: rgba(224, 0, 28, 0.12);
	box-shadow: 0 0 24px rgba(224, 0, 28, 0.22);
	transform: translateY(-1px);
}

.ltg-password-error {
	margin-bottom: 20px;
	padding: 13px 16px;
	border-radius: 10px;
	background: rgba(224, 0, 28, 0.12);
	border: 1px solid rgba(224, 0, 28, 0.28);
	color: #ff5a6b;
	font-size: 14px;
	position: relative;
	z-index: 1;
}

@media (max-width: 767px) {
	.ltg-password-wrapper {
		min-height: 65vh;
		padding: 36px 16px;
	}

	.ltg-password-card {
		max-width: 100%;
		padding: 36px 22px;
		border-radius: 16px;
	}

	.ltg-password-icon {
		width: 58px;
		height: 58px;
		font-size: 24px;
	}

	.ltg-password-card p {
		font-size: 14px;
		margin-bottom: 28px;
	}

	.ltg-password-form {
		gap: 16px;
	}

	.ltg-password-form input[type="password"],
	.ltg-password-form button {
		height: 58px;
		min-height: 58px;
		font-size: 15px;
	}
}