/* === Center the login card === */
.ic-Login__content {
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px 24px 28px 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: min(95vw, 460px);
  box-sizing: border-box;
}

/* === Force logo container to fill full width === */
.ic-Login-header_logo {
  flex: 1 1 100% !important;   /* allow it to grow fully */
  min-width: 0 !important;     /* remove 160px limit */
  text-align: center;          /* ensure logo is centered */
}

/* === Adjust logo appearance === */
.ic-Login-header img {
  display: inline-block;
  width: 90%;                  /* fills 90% of the header */
  max-width: 400px;            /* cap for larger screens */
  height: auto;
  margin: 0 auto;
}

/* === Adjust header spacing === */
.ic-Login-header {
  margin-top: -6px;
  margin-bottom: 18px;
  text-align: center;
}

/* === Responsive tweak === */
@media (max-width: 480px) {
  .ic-Login-header img {
    width: 100%;
    max-width: 300px;
  }
}
