/* Overlay plein écran */
#wk-auth-overlay{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  background: rgba(0,0,0,.45);
}

#wk-auth-overlay.is-open{
  display: block;
}

/* Panel plein écran qui slide depuis la gauche */
#wk-auth-panel{
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,10,16,.92);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform 660ms ease;
  overflow: hidden;
}

#wk-auth-overlay.is-open #wk-auth-panel{
  transform: translateX(0);
}

/* Iframe full */
#wk-auth-frame{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: transparent;
}

/* Bouton close */
#wk-auth-close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  color: #fff;
  cursor: pointer;
}




