html, body {
    height: 100%;
}

.main-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: none;
}

.logo-container img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.card {
    width: 100%;
    max-width: 400px;
}

.login-body {
    background-color: rgb(248, 245, 241); /* light gray, or any hex/RGB color */
}

.password-help {
    margin-top: 0.25rem;
}

  /* Positioning the logo in the upper-right corner */
  .top-right-logo {
    position: absolute;
    top: 0px; /* Distance from the top of the page */
    right: 10px; /* Distance from the right side */
    width: 100px; /* Adjust the size of the logo */
    height: auto; /* Maintain aspect ratio */
  }
    