.container {
  display: flex;
  width: 100%;
  height: 100vh;
}

.left-panel {
  position: relative;
  width: 70%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-login {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.logo-container {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
}

.poligono-container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.poligono-container img {
  animation: pulse 2s infinite;
  width: 100%;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.6;
  }
}

.right-panel {
  width: 50%;
  background-color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

footer {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p {
  font-size: 0.75rem;
  color: #a0aec0;
  text-align: center;
}


.input-with-icon {
  position: relative;
  display: inline-block;
  width: 100%;
}

.input-with-icon input {
  width: 100%;
  padding-right: 2.5em; /* espaço para o ícone */
  box-sizing: border-box;
}

.input-with-icon .toggle-password {
  position: absolute;
  top: 50%;
  right: 0.75em;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1em;
  color: #666;
}