body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

.contenedor-exterior {
  min-height: 100vh;
  /* background-color: #041753; Azul oscuro */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenedor-principal {
  background-color: #f2f2f2;
  border: 4px solid #ccc; /* Gris */
  border-radius: 16px;
  padding: 20px;
  max-width: 80%; /* Ancho máximo reducido */
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  display: flex;
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 200px;
  height: auto;
}

.contenedor-formulario {
  flex: 1;
  padding-right: 20px;
}

.contenedor-carrusel {
  flex: 1;
  padding-left: 20px;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}