* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #333;
  position: relative;
  font-family: "Poppins", sans-serif;
  background: transparent;
  z-index: 1;
}
/* 🔥 VEDIC MOVING BACKGROUND */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/vedic.jpeg") center/cover no-repeat;
  opacity: 0.08;
  z-index: -1;
  animation: moveBg 60s linear infinite;
  pointer-events: none;
}

/* ANIMATION */
@keyframes moveBg {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.05) translate(-20px, -20px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

/* ===== BREADCRUMB ===== */
.au-breadcrumb {
  background: #fffaf3;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 122, 24, 0.15);
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6d5b4b;
  flex-wrap: wrap;
}

.breadcrumb-list a {
  text-decoration: none;
  color: #ff7a18;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #bfa48a;
  font-size: 12px;
}

.breadcrumb-current {
  color: #2c1d14;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  .breadcrumb-list {
    font-size: 13px;
    gap: 6px;
    /* row-gap: 6px; */
  }
}

/* REMOVE OLD FLEX SIDE */
.pg-signup-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* CARD CENTER */
.pg-signup-card {
  max-width: 1000px;
  width: 100%;
  background: #fff;
  border-radius: 22px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

/* HEADING */
.pg-signin-left {
  flex: 1.1;
  background: transparent; /* remove bg image from here */
  padding: 30px;

  display: flex;
  flex-direction: column;
}

/* IMAGE ON TOP */
.pg-signin-left::before {
  content: "";
  width: 100%;
  height: 250px;
  border-radius: 16px;
  margin-bottom: 25px;

  background: url("img/login-pandit.jpg") center top/cover no-repeat;
}
/* REMOVE OLD OVERLAY */
.pg-signin-left::after {
  display: none;
}

/* CONTENT BELOW IMAGE */
.pg-signin-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #2c1d14;
}

.pg-signin-left p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.pg-signin-left ul {
  list-style: none;
}

.pg-signin-left li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
}

.pg-signin-left i {
  color: #ff7a18;
  margin-right: 8px;
}

/* FORM */
.pg-signup-right {
  padding: 0;
}

.pg-signup-right h3 {
  text-align: center;
  margin-bottom: 20px;
}

/* RIGHT */
.pg-signup-right {
  flex: 1.3;
  padding: 45px 40px;
}
.pg-signup-right h3 {
  font-size: 26px;
  color: #2c1d14;
  margin-bottom: 28px;
} /* FORM */
.pg-row {
  display: flex;
  gap: 18px;
}
.pg-field {
  flex: 1;
  margin-bottom: 16px;
}
.pg-field label {
  font-size: 14px;
  color: #5c4b3c;
  margin-bottom: 6px;
  display: block;
}
.pg-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
} /* TERMS */
.pg-terms {
  font-size: 14px;
  margin: 18px 0;
}
.pg-terms a {
  color: #ff7a18;
  text-decoration: none;
} /* BUTTON */
.pg-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #ff7a18, #ff9800);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 122, 24, 0.4);
}
.pg-btn:hover {
  transform: translateY(-2px);
} /* LOGIN LINK */
.pg-login-text {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
}
.pg-login-text a {
  color: #ff7a18;
  font-weight: 600;
  text-decoration: none;
} /* RESPONSIVE */
@media (max-width: 768px) {
  .pg-signup-card {
    flex-direction: column;
  }
  .pg-row {
    flex-direction: column;
  }
  .pg-signup-left {
    text-align: center;
  }
}
