.login-wrapper {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100%;
}

.login-left {
  flex: 1;
  background-image: url('../img/fondo_act1.jpg'); /* Reemplaza si es necesario */
  background-size: cover;
  background-position: center;
}

.login-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 40px;
  box-sizing: border-box;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
  .login-wrapper {
    flex-direction: column;
  }

  .login-left {
    display: none;
  }

  .login-right {
    width: 100%;
    padding: 20px;
  }

  .card-container.card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px;
  }

  .profile-img-card {
    width: 50vw;
  }

  #footer_cliente {
    width: 100%;
    text-align: center;
  }

  input, .btn, .g-recaptcha {
    width: 100% !important;
  }
}
