/* ===================================================
   TELA DE LOGIN - ESTILOS (SPLIT SCREEN SÓLIDO)
   =================================================== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
}

.login-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* --- LADO ESQUERDO --- */
.login-esq {
  flex: 1.2;
  background-color: #f5f5f5; /* O fundo cinza claro que você pediu */
  
  /* A imagem do fundo (floresta + céu) */
  background-image: url('../imagens/bg-paisagem.png'); 
  background-position: bottom center; 
  background-repeat: no-repeat;
  background-size: cover; /* Ajusta a paisagem para preencher o bloco */
  
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.btn-voltar {
  position: absolute;
  top: 40px;
  left: 40px;
  color: #0a4b94;
  font-weight: 700;
  text-decoration: none;
  z-index: 10;
  transition: color 0.3s;
}

.btn-voltar:hover {
  color: #00b359; /* Cor verde do projeto ao passar o mouse */
}

/* Textos da Esquerda */
.login-esq-conteudo {
  position: relative;
  z-index: 5;
  text-align: center;
  margin:0px 0px 0px 250px;
}

.logo-login {
  height: 85px;
  width: auto;
  margin-bottom:30px;
  
}

.titulo-login {
  
  font-family: 'Gobold', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}

.linha-azul-claro {
  color: #1a7eb4;
  font-size: 29px;
  letter-spacing: 1px;
}

.linha-meio {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.texto-do {
  color: #119a4a;
  font-size: 40px;
  margin-left:5px;
}

/* Mantive o efeito do degradê apenas para o texto POVO, conforme o seu design */
.texto-povo {
  font-size: 130px;
  background: linear-gradient(to bottom, #119a4a 0%, #1e5c30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(17, 154, 74, 0.2);
}

.linha-azul-escuro {
  color: #216fac;
  font-size: 65px;
  letter-spacing: 2px;
}

/* Imagens (Tuca e Folhas) */
.tuca-img {
  position: absolute;
  bottom: 100px; /* Grudado na base */
  left: 0px;   /* Grudado no canto esquerdo */
  width: 500px; /* Ajuste se a exportação do Tuca vier maior ou menor */
  z-index: 5;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

.folha-dec {
  position: absolute;
  z-index: 10;
  /*filter: blur(3px); /* Faz as folhas ficarem desfocadas como no Photoshop */
  pointer-events: none;
}

.f-top { top: 10%; left: -3%; width: 120px;}
.f-bottom { bottom: 0%; right: 0%; width: 90px;}

/* --- LADO DIREITO --- */
.login-dir {
  flex: 1;
  background-color: #ffffff; /* Lado direito 100% branco */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 40px;
}

.login-box {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Sombra parecida com a referência */
  width: 100%;
  max-width: 380px;
}

.login-box-header {
  text-align: center;
  margin-bottom: 35px;
}

.logo-box {
  height: 45px;
  margin-bottom: 20px;
}

.login-box-header p {
  color: #777;
  font-size: 13px;
  line-height: 1.5;
  padding: 0 10px;
}

/* Formulário e Inputs */
.input-grupo {
  margin-bottom: 15px;
}

.input-grupo input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #f1f1f1;
  background-color: #f9f9f9;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s;
}

.input-grupo input:focus {
  border-color: #1a7eb4;
  background-color: #ffffff;
}

/* Botão e Link Lado a Lado */
.acoes-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.link-esqueci {
  color: #007bff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.btn-entrar-azul {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 12px 35px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-entrar-azul:hover {
  background-color: #0056b3;
}

/* --- RESPONSIVO (Celular e Tablet) --- */
@media (max-width: 1100px) {
  .login-esq-conteudo {
    margin-left: 0;
  }
  .titulo-login {
    transform: scale(0.85); /* Encolhe o título proporcionalmente */
  }
}

@media (max-width: 900px) {
  .login-wrapper {
    flex-direction: column;
  }
  .login-esq {
    flex: none;
    min-height: 550px;
    background-position: center bottom;
  }
  .tuca-img {
    width: 320px; /* Diminui o Tuca em telas menores */
    left: -20px;
  }
  .titulo-login {
    transform: scale(0.7);
  }
  .login-esq-conteudo {
    margin-top: -100px;
  }
}