/* ========= GENERAL ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cinzel", serif;
}

body {
  height: 100vh;
  background: #0b0417;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========= WRAPPER ========= */
.auth-wrapper {
  width: 100%;
  max-width: 1050px;
  padding: 20px;
}

.auth-card {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

/* ========= LEFT SLIDER SHAPE ========= */
.auth-left {
  width: 45%;
  min-height: 520px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.slider-shape {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  position: relative;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: 1s ease;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide h2 {
  color: #fff;
  max-width: 260px;
  line-height: 1.4;
  text-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
  font-size: 1.4rem;
}

.slide-dots {
  position: absolute;
  bottom: 18px;
  left: 28px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: 0.3s;
}

.dot.active {
  background: #c084fc;
  transform: scale(1.25);
}

/* ========= RIGHT FORM ========= */
.auth-right {
  width: 55%;
  padding: 45px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.galaxy-logo {
  width: 85px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.4));
}

.auth-title {
  font-size: 1.9rem;
  color: #fff;
}

.auth-sub {
  color: #cfc8ff;
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group label {
  font-size: 0.85rem;
  color: #d8d0ff;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.2s ease;
}

.form-group input:focus {
  border-color: #c084fc;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.45);
}

.btn-login {
  margin-top: 5px;
  padding: 0.85rem;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(90deg, #8b5cf6, #c084fc);
  transition: 0.2s;
}

.btn-login:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.register-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #d6d0ff;
}

.register-text a {
  color: #c084fc;
  font-weight: bold;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
  .auth-card {
    flex-direction: column;
  }

  .auth-left,
  .auth-right {
    width: 100%;
  }

  .auth-left {
    height: 280px;
    min-height: 280px;
  }

  .auth-right {
    padding: 30px;
  }
}
