.center-page-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  overflow: overlay;
}

.dotted-pattern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: repeat;
  background-size: 20px 20px;
  background-position: 0 0;
  opacity: 0.5;
  pointer-events: none;
  z-index: -2;
}

.radial-gradient-overlay::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  --gradient-angle: 360deg;
  --gradient-start: 0%;
  --gradient-end: 60%;
  background: radial-gradient(circle, transparent var(--gradient-start), var(--background) var(--gradient-end));
  pointer-events: none;
  z-index: 1;
}

.cursor-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, transparent 15%, var(--background) 75%);
  transition: background-position 3s ease-out;
  z-index: -1;
}

.center-base {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.center-base-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
  
.auth-wrapper {
  min-width: 40%;
}
.member-page-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    z-index: 1;
    position: fixed;
    padding: 15rem 10rem 10rem 10rem;
    top: 0;
    height: 100%;
    overflow-y: auto;
}

.generator-page-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  z-index: 1;
  padding: 0 4rem;
}

.flex-3 {
  display: flex;
  z-index: 5;
  position: relative;
}

.button-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.center-items {
  display: flex;
  font-size: 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.head-wrap {
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
}

.pk-bg:hover {
  background:  rgba(255, 190, 140, 0.2) !important;
}

.super-back-layer {
  background-position: center;
  background-image: url('/assets/images/bg.svg');
    background-size: cover;
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;

}