

.login_body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  background: url('imagem/fundosite2.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login_container {
  background-color: rgba(255, 255, 255, 0.9); /* Levemente translúcido */
  max-width: 1000px;
  width: 95%;
  display: flex;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  overflow: hidden;
}

.texto_bonito {
        font-family: 'Great Vibes', cursive;
        font-size: 42px;
        color: #333;
    }


/* Esquerda com nome do sistema */
.login_left {
  flex: 1;
  background: linear-gradient(to bottom, #9c1128, #b31a33);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  animation: fadeInLeft 1s ease;
}


.login_title {
  font-size: 4.8rem;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  animation: slideDown 1s ease;
}

/* Direita com formulário */
.login_right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.login_logo {
  max-height: 90px;
  margin-bottom: 20px;
}

.login_form {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login_input_group {
  position: relative;
  margin-bottom: 20px;
  width:100%;
}

.login_input_group input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  font-size: 1rem;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  background: #f0fff0;
}

.login_icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.login_button {
  width: 100%;
  padding: 12px;
  background: #388e3c;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.login_button:hover {
  background: #2e7d32;
}

.login_forgot {
  text-align: center;
  margin-top: 10px;
}

.login_forgot a {
  color: #388e3c;
  font-size: 0.9rem;
  text-decoration: none;
}

.login_forgot a:hover {
  text-decoration: underline;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .login_container {
    flex-direction: column;
  }

  .login_title {
    font-size: 1.8rem;
  }

  .login_right {
    padding: 20px;
  }

  .login_left {
    padding: 30px;
	display:none;
  }
}
