/**
 * collectie.html laadt Boost-widget CSS ná theme/base. Die stylesheet overschrijft
 * vaak .button / inputs. Dit herstelt het login-zijpaneel zoals op index.html.
 */
customer-auth#halo-auth-sidebar,
#halo-auth-sidebar.halo-auth-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 92vw);
  max-width: 400px;
  background: var(--bg-white, #fff);
  z-index: 102;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}

body.auth-sidebar-show customer-auth#halo-auth-sidebar,
body.auth-sidebar-show #halo-auth-sidebar.halo-auth-sidebar {
  transform: translateZ(0);
  opacity: 1;
  visibility: visible;
}

#halo-auth-sidebar .halo-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-global, #e6e6e6);
}

#halo-auth-sidebar .halo-sidebar-header .title {
  font-weight: var(--font-weight-bold, 700);
  font-size: 1.125rem;
  margin: 0;
}

#halo-auth-sidebar .auth-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

#halo-auth-sidebar .auth-form input.button.button-1,
#halo-auth-sidebar .auth-form .button.button-1 {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: var(--font-body-size, 16px);
  font-weight: var(--font-weight-semibold, 600);
  line-height: 1.2;
  cursor: pointer;
  background: var(--color-link, #28a745);
  color: #fff;
  width: 100%;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

#halo-auth-sidebar .auth-form a.button.button-2 {
  display: block;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: var(--font-body-size, 16px);
  font-weight: var(--font-weight-semibold, 600);
  text-align: center;
  text-decoration: none;
  background: var(--color-link, #28a745);
  color: #fff;
  border: 2px solid var(--color-link, #28a745);
  box-sizing: border-box;
}

#halo-auth-sidebar .form-field .form-input {
  border: 1px solid var(--border-global, #e6e6e6);
  border-radius: 4px;
  padding: 10px 12px;
  width: 100%;
  box-sizing: border-box;
}
