.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.login-img-logo {
  background-repeat: no-repeat;
  background-size: cover;
  height: 100px;
}

.login-img {
  position: relative;
  width: 40%;
  height: 100%;
  overflow: hidden;
}

.text-group-login {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  /* Ajuste o tamanho conforme necessário */
}

.text-green {
  color: green;
  /* Substitua por seu tom específico de verde */
}

.text-yellow {
  color: yellow;
  /* Substitua por seu tom específico de amarelo */
}

.login-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(29, 91, 45, 0.8) 0%,
      rgba(5, 46, 11, 0.8) 100%);
  box-shadow: 0px 10px 10px 0px #00000040;

  background-size: cover;
  z-index: 1;
}

.login-img {
  background-image: url("../assets/img/images.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: blur(20px);
  /* Aplicando o filtro de desfoque na imagem de fundo */
}

.login-form {
  max-width: 1000px;
  width: 55%;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

.login-form img {
  width: 100%;
  /* Ajusta o tamanho da imagem para 100% da largura da div */
  margin-bottom: 20px;
  /* Adiciona margem inferior à imagem */
  border-radius: 10px;
  /* Adiciona borda arredondada à imagem */
}

.login {
  width: 100%;
}

.login-right {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-input {
  box-shadow: 1px 1px 3px 2px #0000001a inset;
  width: 100%;
  height: 80px;
  border-radius: 3px 0px 0px 0px;
  opacity: 0px;
  background: #f4f2f2;
  border: 1px solid #ffffff;
  font-size: 2.7rem;
  color: #a39d9d;
  transition: all 0.5s;
  padding-left: 15px;

  &:focus {
    border-radius: 10px;
  }
}

.btn-login {
  width: 100%;
  height: 78px;
  border-radius: 10px 10px 10px 10px;
  opacity: 0px;
  background: linear-gradient(180deg, #f8f8f8 0%, #e6e6e6 100%);

  font-family: Montserrat;
  font-size: 30px;
  font-weight: 500;
  line-height: 48.76px;
  text-align: center;
  border: none;
  color: #003f31;
  box-shadow: 4px 4px 4px 0px #00000040;
}

.badge-btn-login {
  position: absolute;
  width: 29px;
  height: 78px;
  border-radius: 10px 0px 0px 10px;
  background: #003f31;
  border: 1px solid #003f31;
}

.text-green {
  color: #1d5b2d;
  font-weight: 900;
}

.text-yellow {
  color: #f9a219;
  font-weight: 900;
}

.text-group-login {
  text-align: center;
  font-size: 4rem;
  font-style: italic;
  font-weight: 900;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .login-form {
    width: 70%;
    /* Reduz a largura do formulário */
  }

  .text-group-login {
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 768px) {
  .login-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    height: 100vh;
    width: 100%;
  }

  .login-img {
    display: none;
    /* Reduz a altura da imagem */
  }

  .login-img::before {
    height: 50vh;
    /* Ajusta a altura do gradiente */
  }

  .login-right {
    width: 100%;
    padding: 20px;
    /* Adiciona um espaçamento interno */
  }

  .login-form {
    width: 100%;
  }

  .login-input,
  .btn-login {
    opacity: 1;
    /* Torna os elementos visíveis */
  }
}

@media screen and (max-width: 500px) {
  .text-group-login {
    font-size: 2.8rem;
  }
}