* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: linear-gradient(135deg, #014747 0%, #055454 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.login-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1200px;
	width: 100%;
	height: 600px;
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.login-card {
	padding: 60px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: white;
}

.login-header {
	text-align: center;
	margin-bottom: 40px;
}

.logo {
	max-width: 120px;
	height: auto;
	margin: 0 auto 20px auto;
	display: block;
}

.login-header h2 {
	font-size: 28px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.login-header p {
	font-size: 16px;
	color: #6b7280;
	font-weight: 400;
}

.login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.input-group {
	position: relative;
	width: 100%;
	height: 56px;
}

.input-group i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 16px;
	z-index: 10;
	pointer-events: none;
}

.input-group input {
	width: 100%;
	height: 100%;
	padding: 0 16px 0 48px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 16px;
	background: #f9fafb;
	transition: all 0.3s ease;
	outline: none;
	font-family: inherit;
	line-height: 1;
	box-sizing: border-box;
}

.input-group input:focus {
	border-color: #014747;
	background: white;
	box-shadow: 0 0 0 3px rgba(1, 71, 71, 0.1);
}

.input-group input:focus + i {
	color: #014747;
}

.input-group input::placeholder {
	color: #9ca3af;
	font-size: 15px;
}

.login-btn {
	background: linear-gradient(135deg, #014747 0%, #055454 100%);
	color: white;
	border: none;
	padding: 16px 24px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 10px;
	font-family: inherit;
	width: 100%;
	height: 56px;
	box-sizing: border-box;
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(1, 71, 71, 0.3);
	background: linear-gradient(135deg, #055454 0%, #014747 100%);
}

.login-btn:active {
	transform: translateY(0);
}

.login-bg {
	position: relative;
	background: url('../img/fundo.jpg') center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(1, 71, 71, 0.8) 0%, rgba(5, 84, 84, 0.8) 100%);
}

/* Responsivo */
@media (max-width: 768px) {
	.login-container {
		grid-template-columns: 1fr;
		height: auto;
		max-width: 400px;
	}
	
	.login-bg {
		display: none;
	}
	
	.login-card {
		padding: 40px 30px;
	}
}

@media (max-width: 480px) {
	.login-card {
		padding: 30px 20px;
	}
	
	.login-header h2 {
		font-size: 24px;
	}
	
	.input-group {
		height: 50px;
	}
	
	.input-group input {
		padding: 0 14px 0 44px;
		font-size: 15px;
	}
	
	.input-group i {
		left: 14px;
		font-size: 14px;
	}
	
	.login-btn {
		height: 50px;
		font-size: 15px;
	}
}


