/* Estilos específicos de esta página */
.glass-card {
	max-width: 1200px;
	min-height: 600px;
	display: flex;
}

/* Left Side - Branding */
.brand-section {
	flex: 1;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}

.brand-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 20px 20px;
	opacity: 0.3;
	animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(20px, 20px);
	}
}

.logo-area {
	position: relative;
	z-index: 1;
}

.logo-icon {
	margin-bottom: 30px;
}

@keyframes pulse {

	0%,
	100% {
		box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
	}

	50% {
		box-shadow: 0 10px 60px rgba(99, 102, 241, 0.6), 0 0 80px rgba(99, 102, 241, 0.3);
	}
}

.features-list {
	position: relative;
	z-index: 1;
	margin-top: auto;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}

.feature-icon {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-size: 1.1rem;
}

/* Right Side - Forms */
.forms-section {
	flex: 1;
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.form-container {
	position: relative;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

.form-box {
	position: absolute;
	width: 100%;
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.form-box.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: all;
	position: relative;
}

.form-box.exit {
	opacity: 0;
	transform: translateX(-50px);
}

.form-header {
	margin-bottom: 40px;
}

.form-header h2 {
	color: white;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.form-header p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
}

.form-footer {
	margin-top: 30px;
	text-align: center;
}

.form-footer p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.form-footer a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.form-footer a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
	transition: width 0.3s ease;
}

.form-footer a:hover {
	color: var(--accent-color);
}

.form-footer a:hover::after {
	width: 100%;
}

/* Responsive específico */
@media (max-width: 992px) {
	.glass-card {
		flex-direction: column;
		max-width: 500px;
	}

	.brand-section {
		padding: 40px;
		min-height: 300px;
	}

	.forms-section {
		padding: 40px;
	}

	.features-list {
		display: none;
	}
}

@media (max-width: 576px) {
	.brand-section {
		padding: 30px;
		min-height: 250px;
	}

	.forms-section {
		padding: 30px;
	}

	.form-header h2 {
		font-size: 1.5rem;
	}
}