* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	/* background-color: #245235; */
	background: url('../img/background.png')no-repeat;
    background-size: cover;
	font-family: Arial, sans-serif;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .login-container {
	display: flex;
	align-items: center;
	justify-content: right;
	width: 100%;
	margin-right: 50px;
  }
  
  .login-box {
	background-color: #fff;
	padding: 40px 30px;
	border-radius: 15px;
	width: 100%;
	max-width: 350px;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
	text-align: center;
  }
  
  .logo {
	width: 120px;
	margin-bottom: 30px;
  }
  
  h4{
    margin-bottom: 20px;
  }
  
  form input {
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 16px;
  }
  
  form button {
	width: 100%;
	padding: 12px;
	background-color: #245235;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s ease;
	margin-bottom: 15px;
  }
  
  form button:hover {
	background-color: #333;
  }
  
  .forgot-link{
	display: block;
	font-size: 13px;
	color: #666;
	text-decoration: none;
  }
  
  .forgot-link:hover {
	text-decoration: underline;
  }
  .password-container {
	position: relative;
	width: 100%;
  }
  
  .password-container input {
	width: 100%;
	padding-right: 40px; /* espaço pro ícone */
	height: 40px; /* ajuste conforme necessário */
	box-sizing: border-box;
	font-size: 16px;
  }
  
  .toggle-password {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	cursor: pointer;
	display: flex;
	align-items: center;
	height: 100%;
	color: #333;
	font-size: 20px;
  }  