body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

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

.login-form {
  width: 50%;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form .logo {
  width: 160px;
  margin-bottom: 32px;
}

.login-form h1 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 600;
}

.login-form p {
  font-size: 14px;
  color: #444;
  margin-bottom: 24px;
}

.login-form label {
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
  font-weight: 500;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.link-senha {
  font-size: 14px;
  color: #00cc66;
  text-decoration: none;
  margin-bottom: 24px;
  display: inline-block;
}

.link-senha-wrapper {
  text-align: right;
}

.botao-entrar {
  background-color: #00cc66;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.botao-entrar:hover {
  background-color: #00b15a;
}

footer {
  margin-top: 40px;
  font-size: 12px;
  color: #888;
}

.login-bg {
  width: 50%;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.login-bg {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.form-box {
  max-width: 500px;
  width: 100%;
}

.form-box input,
.form-box .botao-entrar {
  width: 100%;
  box-sizing: border-box;
}

.mensagem-erro {
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  color: #d60000;
  background-color: #ffe5e5;
  border: 1px solid #ffb3b3;
  padding: 12px;
  margin-top: 16px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}

.senha-wrapper {
  position: relative;
  width: 100%;
}

.senha-wrapper input {
  width: 100%;
  padding: 12px 44px 12px 12px; /* espaço pro ícone à direita */
  height: 44px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.toggle-senha {
  position: absolute;
  right: 12px;
  top: 11px; /* ajuste pixel a pixel */
  width: 22px;
  height: 22px;
  cursor: pointer;
  object-fit: contain;
  display: block;
  pointer-events: auto;
}







