:root {
	--primary-color: #2c3e50;
	--secondary-color: #3498db;
	--success-color: #27ae60;
	--warning-color: #f39c12;
	--danger-color: #e74c3c;
	--light-bg: #ecf0f1;
	--border-color: #ddd;
}

body {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
}

.login-container {
	display: flex;
	min-height: 100vh;
}

/* Lado Esquerdo - Propaganda e Resultados */
.left-side {
	flex: 1;
	background: linear-gradient(
		135deg,
		rgba(44, 62, 80, 0.9),
		rgba(52, 152, 219, 0.9)
	);
	color: white;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.left-side::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	pointer-events: none;
}

.brand-section {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}

@media (max-width: 1199px) {
	.brand-section {
		margin-bottom: 40px;
	}
}

/* parei aqui.. */

.brand-logo {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.brand-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1199px) {
	.brand-title {
		font-size: 2rem;
	}
}

.brand-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 30px;
}

@media (max-width: 1199px) {
	.brand-subtitle {
		font-size: 1.1rem;
		margin-bottom: 10px;
	}
}

.features-section {
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}

@media (max-width: 1199px) {
	.features-section {
		margin-bottom: 40px;
	}
}

.feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1199px) {
	.feature-item {
		margin-bottom: 20px;
	}
}

.feature-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	font-size: 1.5rem;
}

.feature-text {
	flex: 1;
}

.feature-title {
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 1.1rem;
}

.feature-description {
	opacity: 0.8;
	font-size: 0.9rem;
}

.results-section {
	position: relative;
	z-index: 1;
}

.results-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
}

@media (max-width: 1199px) {
	.results-title {
		font-size: 1.4rem;
	}
}

.result-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.result-number {
	font-size: 2rem;
	font-weight: bold;
	color: #f39c12;
	margin-bottom: 5px;
}

@media (max-width: 1199px) {
	.result-number {
		font-size: 1.8rem;
	}
}

.result-label {
	font-size: 0.9rem;
	opacity: 0.8;
}

/* Lado Direito - Formulários */
.right-side {
	flex: 1;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.form-container {
	width: 100%;
	max-width: 400px;
}

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

.form-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.form-subtitle {
	color: #6c757d;
	font-size: 1rem;
}

.form-tabs {
	display: flex;
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-tab {
	flex: 1;
	padding: 15px;
	text-align: center;
	background: #f8f9fa;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	color: #6c757d;
}

.form-tab.active {
	background: var(--secondary-color);
	color: white;
}

.form-tab:hover:not(.active) {
	background: #e9ecef;
}

.form-content {
	display: none;
}

.form-content.active {
	display: block;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--primary-color);
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-control:focus {
	outline: none;
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-control.error {
	border-color: var(--danger-color);
}

.error-message {
	color: var(--danger-color);
	font-size: 0.85rem;
	margin-top: 5px;
	display: none;
}

.btn-primary {
	width: 100%;
	padding: 15px;
	background: var(--secondary-color);
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.btn-primary:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:disabled {
	background: #6c757d;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.form-footer {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e9ecef;
}

.form-footer a {
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 600;
}

.form-footer a:hover {
	text-decoration: underline;
}

.alert {
	padding: 12px 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	border: none;
}

.alert-success {
	background: #d4edda;
	color: #155724;
}

.alert-danger {
	background: #f8d7da;
	color: #721c24;
}

.alert-warning {
	background: #fff3cd;
	color: #856404;
}

.loading {
	display: none;
	text-align: center;
	padding: 20px;
}

.spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid var(--secondary-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	animation: spin 1s linear infinite;
	margin: 0 auto 10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Responsividade */
@media (max-width: 768px) {
	.login-container {
		flex-direction: column;
	}

	.left-side {
		padding: 30px 20px;
		min-height: 50vh;
		order: 2;
	}

	.right-side {
		padding: 30px 20px;
		min-height: 50vh;
		order: 1;
	}

	.brand-title {
		font-size: 2rem;
	}

	.form-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.left-side,
	.right-side {
		padding: 20px 15px;
	}

	.brand-title {
		font-size: 1.8rem;
	}

	.feature-item {
		flex-direction: column;
		text-align: center;
	}

	.feature-icon {
		margin-right: 0;
		margin-bottom: 15px;
	}
}
