.custom-list {
  list-style-type: disc; /* or circle, square, etc. */
  padding-left: 20px; /* add padding for indentation */
}
.list-item {
  /* make sure no overriding styles remove bullets */
  list-style-type: inherit;
}

.custom-carousel-img {
  width: 100%;
  height: auto;
  max-height: 400px; /* Optional: Limits the maximum height */
  object-fit: contain;
  display: block;
  margin-left: 100px;
  margin-right: auto;
}

.loginbox {
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 32px 24px !important;
    background: #fff !important;

}


@media (max-width: 576px) {
    .loginbox {
        margin: 62px 28px !important;    /* Adds margin left/right */
        padding: 18px 10px !important;  /* Reduces internal padding */
        max-width: 99vw !important;
        min-width: 0;
    }
}


