body {
  background-image: url('../img/BodyImg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.logo {
  width: 10rem;
  margin-bottom: 1rem;
}

.modal-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */
  top: 0;
  left: 0;
}

.modal-dialog {
  position: relative;
  z-index: 1060;
}

.modal-content-custom {
  background-color: #fff; /* Fondo blanco */
  border-radius: 0.5rem;
  padding: 1rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

.d-none {
  display: none;
}
