*{
  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;
}

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

.auth-card {
  background: #fff;
  max-width: 420px;
  width: 100%;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  text-align: center;
}

/* BRAND */
.auth-brand img {
  width: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.auth-brand h3 {
  margin-bottom: 20px;
}

/* TEXT */
.auth-card h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.auth-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

/* INPUT */
.auth-field {
  position: relative;
  margin-bottom: 20px;
}

.auth-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.auth-field input {
  width: 100%;
  padding: 14px 42px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

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

/* OTP */
.otp-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.otp-box input {
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

/* LINKS */
.auth-back,
.auth-resend {
  margin-top: 18px;
  font-size: 14px;
}

.auth-back a,
.auth-resend a {
  text-decoration: none;
  color: #ff7a18;
  font-weight: 600;
}
