body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3; /* fundo claro */
  font-family: 'Poppins', sans-serif;
}

.login-container {
  width: 90%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* --- LADO ESQUERDO --- */
.left-side {
  background-color: #111;
  position: relative;
  clip-path: ellipse(85% 100% at 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.left-side img {
  width: 75%;
  max-width: 320px;
  position: relative;
  z-index: 2;
  object-fit: contain;
}

/* --- LADO DIREITO --- */
.right-side {
  background-color: #fff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
}

/* Título com borda inferior */
.titulo-login {
  position: relative;
  display: inline-block;
}

.titulo-login::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #D6D600;
  margin: 8px auto 0;
  border-radius: 5px;
}

.form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ccc;
  box-shadow: none;
}

.input-group-text {
  background-color: transparent;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 10px 0 0 10px;
  color: #777;
}

.input-group .form-control {
  border-left: none;
  border-radius: 0 10px 10px 0;
}

.btn-eye {
  border: 1px solid #ccc;
  border-left: none;
  border-radius: 0 10px 10px 0;
  background: transparent;
  color: #777;
}

.btn-eye:hover {
  color: #D6D600;
}

.link-esqueci-senha {
  color: #D6D600;
  text-decoration: none;
  font-size: 0.9rem;
}

.link-esqueci-senha:hover {
  text-decoration: underline;
  color: #bebe00;
}

.btn-login {
  background-color: #D6D600;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  padding: 12px;
  transition: 0.3s;
}

.btn-login:hover {
  background-color: #c5c500;
}

/* Responsivo */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }
  .left-side {
    clip-path: none;
    width: 100%;
    padding: 30px;
  }
  .right-side {
    padding: 40px 30px;
  }
}
