/* ============================================================
   GLOBAL
============================================================ */
.auth-body {
  background: url('/assets/img/authBackground.jpg') center/cover no-repeat;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "Poppins", sans-serif;
  position: relative;
}

.auth-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  z-index: 1;
}

/* LOGO */
.auth-logo-link {
  position: absolute;
  top: 25px;
  left: 35px;
  z-index: 5;
  display: inline-block;
}

.auth-logo {
  height: 55px;
  display: block;
}

/* ============================================================
   CONTAINER
============================================================ */
.auth-container {
  position: relative;
  width: 88%;
  max-width: 1280px;
  min-height: 680px;
  align-items: stretch;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

/* ============================================================
   CARDS
============================================================ */
.auth-card {
  width: 50%;
  padding: 60px;
  border-radius: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* LEFT FORM CARD */
.auth-left {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  z-index: 4;
}

/* RIGHT WELCOME PANEL */
.auth-right {
  background: #2A2A2A;
  color: white;
  padding-top: 70px;
  overflow: hidden;
  z-index: 4;
}

/* ============================================================
   VECTOR SHAPES (ACCURATE POSITIONS)
============================================================ */
.shape-1,
.shape-2,
.shape-3,
.shape-4 {
  position: absolute;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* Top-right blob */
.shape-1 {
  background: url('/assets/img/Vector01.svg') no-repeat;
  width: 110px;
  height: 110px;
  background-size: contain;
  top: 5px;
  left: 5px;
}

/* Middle-right blob */
.shape-2 {
  background: url('/assets/img/Vector02.svg') no-repeat;
  width: 300px;
  height: 300px;
  background-size: contain;
  top: 5px;
  right: -50px;
}

/* Lower-left blob */
.shape-3 {
  background: url('/assets/img/Vector03.svg') no-repeat;
  width: 200px;
  height: 200px;
  background-size: contain;
  top: 230px;
  left: 30px;
}

/* Bottom blob */
.shape-4 {
  background: url('/assets/img/Vector04.svg') no-repeat;
  width: 100%;
  height: 200px;
  background-size: contain;
  bottom: 10px;
  right: 0;
}

/* ============================================================
   TITLES
============================================================ */
.auth-title {
  font-size: 38px;
  color: #C685FF;
  font-weight: 600;
  margin-bottom: 35px;
}

.forgot-subtext {
  font-size: 15px;
  color: #dcd3f7;
  margin-top: -10px;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 90%;
}

.right-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  z-index: 5;
  position: relative;
}

.script {
  font-family: "WindSong", cursive;
  font-size: 50px;
  color: #C685FF;
  font-weight: 500;
  display: inline-block;
  margin-right: 8px;
}

/* ============================================================
   FORM
============================================================ */
.auth-form input {
  width: 100%;
  padding: 15px;
  border-radius: 16px;
  border: none;
  background: #ffffff;
  box-shadow:
    inset 3px 3px 9px rgba(0, 0, 0, 0.18),
    inset -3px -3px 8px rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.auth-row {
  display: flex;
  gap: 15px;
}

.auth-password {
  position: relative;
}

.toggle-eye {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-85%);
  width: 22px;
  height: 22px;
  cursor: pointer;
  opacity: 0.75;
  transition: 0.2s ease;
  pointer-events: auto;
}

.toggle-eye:hover {
  opacity: 1;
}

.auth-link-small {
  font-size: 14px;
  color: #C685FF;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 25px;
}


/* ============================================================
   BUTTONS
============================================================ */
.auth-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;

  background: linear-gradient(#F3DCFF, #D8BCFF);
  color: #7C32E6;
  font-size: 18px;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(160, 90, 255, 0.35);
}

.right-btn-link {
  color: #C685FF;
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  z-index: 5;
  position: relative;
}

/* ============================================================
   TEXT
============================================================ */
.right-text {
  margin-top: 25px;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
  z-index: 5;
  position: relative;
}

.right-small {
  margin-top: 40px;
  opacity: 0.75;
  z-index: 5;
  position: relative;
}

.acc-sub-text {
  font-size: 14px;
  opacity: 0.85;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 940px) {
  .auth-container {
    flex-direction: column;
    width: 95%;
  }

  .auth-card {
    width: 100%;
  }

  .script {
    font-size: 60px;
  }
}
