*{
  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; */
  }
}
/* WRAPPER */
.pg-signin-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* CARD */
.pg-signin-card {
  width: 100%;
  max-width: 900px;
  height: 500px;
  display: flex;
  border-radius: 24px;
  overflow: hidden;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(18px);

  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* LEFT IMAGE */
/* LEFT SIDE CLEAN LAYOUT */
.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;
}

/* RIGHT FORM */
.pg-signin-right {
  flex: 0.9;
  background: rgba(255,255,255,0.9);
  padding: 50px 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pg-signin-right h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #2c1d14;
}

/* FORM */
.pg-field {
  margin-bottom: 15px;
}

.pg-field label {
  font-size: 14px;
  color: #5c4b3c;
  margin-bottom: 6px;
  display: block;
}

.pg-field input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  transition: 0.3s;
}

.pg-field input:focus {
  border-color: #ff7a18;
  background: #fff;
  box-shadow: 0 0 10px rgba(255,122,24,0.2);
  outline: none;
}

/* PASSWORD */
.pg-password {
  position: relative;
}

.pg-password i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
}

/* OPTIONS */
.pg-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin: 15px 0;
}

.pg-options a {
  color: #ff7a18;
  text-decoration: none;
}

/* BUTTON */
.pg-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #ff7a18, #ff9800);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.pg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,122,24,0.4);
}

/* SIGNUP */
.pg-signup-text {
  margin-top: 20px;
  text-align: center;
}

.pg-signup-text a {
  color: #ff7a18;
  font-weight: 600;
  text-decoration: none;
}

/* ALERTS */
.error-msg {
  background: #ffe5e5;
  color: #d8000c;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.success-msg {
  background: #e6ffed;
  color: #2e7d32;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pg-signin-card {
    flex-direction: column;
    height: auto;
  }

  .pg-signin-left {
    height: 250px;
  }

  .pg-signin-right {
    padding: 30px 20px;
  }
}