@import url("https://fonts.cdnfonts.com/css/satoshi");

* {
	font-family: "Satoshi", sans-serif;
}

body {
	background-color: #f4f8f7;
	/* font-family: Arial, sans-serif; */
	box-sizing: border-box;
	height: 100vh;
	overflow: hidden;
}
h2,
p,
span,
a {
	color: #696969;
}

.left-side {
	background-color: #ffffff;
	padding: 50px;
	position: relative;
	display: flex;
	flex-direction: column;
}

/* Logo fixado no topo à esquerda */
.logo-fixed {
	position: fixed;
	top: 20px;
	left: 0;
	width: 120px;
	margin-left: 10px;
	margin-top: 10px;

}

.login-form {
	min-width: 400px; /* Maior largura para os campos */
	margin: auto;
}
.btn-primary {
	background-color: #2a9d8f;
	border: none;
	border-radius: 10px;
	padding: 15px; /* Botão maior */
	font-size: 16px; /* Texto do botão maior */
}
.btn-primary:hover {
	background-color: #21867a;
}
.form-control {
	height: 50px; /* Aumenta a altura dos campos */
	font-size: 16px; /* Texto maior nos campos */
}
.form-footer {
	display: flex;
	font-size: 14px;
}
.form-footer a {
	text-decoration: none;
	color: #2a9d8f;
}
.form-footer a:hover {
	text-decoration: underline;
}
.image-side {
	background-size: cover;
	background-position: center;
	height: 100vh;
	padding: 30px;
}

.recuperar-senha {
	margin-left: 20px;
}

.form-eye {
	border: none;
	background: none;
}

.image-side {
	position: relative;
	padding: 30px;
	background-color: #f4f8f7;
}

.img-fluid {
	width: 100%;
	border-radius: 10px;
	margin-left: 96px;
}

.text-overlay p {
	padding-top: 40px;
	margin-left: 96px;
	margin-bottom: 64px;
	color: #3c8e81;
	width: 560px;
	font-size: 28px;
	line-height: 1.6;
	font-weight: 500;
	/* font-family: "Arial", sans-serif; */
	box-sizing: border-box;
}

/* Rodapé */
footer {
	position: absolute;
	bottom: 20px;
	left: 50px;
	font-size: 14px;
	color: #696969;
}
footer a {
	color: #2a9d8f;
	text-decoration: none;
}
footer a:hover {
	text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
	body {
		overflow: auto;
		overflow-x: hidden;
	}

	.left-side {
		padding: 0.1rem;
	}

	/* .login-form {
		min-width: auto;
		width: 100%;
		padding: 10px;
	} */

	.btn-primary {
		width: 100%;
		padding: 12px;
		font-size: 14px;
	}

	.form-control {
		height: 45px;
		font-size: 14px;
	}

	.form-footer {
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.image-side {
		height: auto;
		padding: 20px;
		text-align: center;
	}

	.text-overlay {
		overflow: hidden;
		height: auto; /* Ajuste a altura conforme necessário */
		width: 100%; /* Garante que ocupe toda a largura disponível */
	}

	.text-overlay p {
		margin-left: 0;
		width: 100%;
		font-size: 20px;
		padding-top: 20px;
	}

	.img-fluid {
		width: 120%; /* Faz a imagem ocupar mais espaço (ajuste conforme necessário) */
		max-width: 100%; /* Garante que não ultrapasse o tamanho da tela */
		margin-left: 0; /* Ajusta a posição da imagem para centralizar ou ajustar */
	}

	.logo-fixed {
		position: relative; /* Remove a fixação */
		top: auto;
		left: 0; /* Garante que fique na esquerda */
		width: 80px; /* Ajusta o tamanho */
		margin-right: auto; /* Remove margem lateral */
		margin-bottom: 32px;
	}

	footer {
		display: none;
		/* position: relative;
        left: 0;
        bottom: 10px;
        font-size: 12px; */
	}
}
