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

/* ================= HERO SECTION ================= */

/* HERO BACKGROUND */
.signin-hero {
  background: url("img/family.png") center/cover no-repeat;
  width: 100%;
}

.signin-overlay {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

/* CONTENT */
.signin-content {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

/* HEADING */
.signin-heading {
  color: #fff;
  margin-bottom: 25px;
}

.signin-heading h1 {
  font-size: 34px;
  font-weight: 700;
}

.signin-heading p {
  font-size: 15px;
  opacity: 0.9;
}

/* CARD */
.si-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* LOGO SECTION */
.si-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* TEXT LOGO STYLE */

.si-user-text{
  font-size:28px;
  font-weight:700;
  text-align:center;
  color:#7a5a2f;
 
  letter-spacing:1px;
}

/* OPTIONAL SUBTEXT */
.si-user-text span{
  display:block;
  font-size:12px;
  color:#888;

  margin-top:4px;
}

/* FORM TITLE */
.si-card h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

/* INPUT FIELD */
/* INPUT FIELD */
.si-field{
  position:relative;
  margin-bottom:16px;
  width:100%;
}

/* LEFT ICON */
.si-field > i{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  color:#999;
  font-size:15px;
  z-index:2;
  pointer-events:none;
}



/* INPUT */
.si-field input{
  width:100%;
  height:52px;
  padding:0 48px 0 46px; /* left & right spacing */
  border:1px solid #ddd;
  border-radius:12px;
  font-size:14px;
  background:#fff;
  transition:all .3s ease;
}

/* INPUT FOCUS */
.si-field input:focus{
  border-color:#ff7a18;
  box-shadow:0 0 0 4px rgba(255,122,24,0.12);
  outline:none;
}


/* PASSWORD EYE ICON */
.si-eye{
  position:absolute;
  top:50%;
  right:16px;
  transform:translateY(-50%);

  width:22px;
  height:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;
  color:#999;
  z-index:3;
}

/* Eye hover */
.si-eye:hover{
  color:#ff7a18;
}

/* OPTIONS */
.si-options {
  font-size: 13px;
  margin: 10px 0 18px;
  text-align: left;
}

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

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

.si-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,122,24,0.4);
}

/* SIGNIN LINK */
.si-signup {
  margin-top: 15px;
  font-size: 14px;
}

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

/* ERROR */
.error-msg {
  background: #ffe5e5;
  color: #d60000;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 480px) {

  .signin-heading h1 {
    font-size: 26px;
  }

  .signin-heading p {
    font-size: 14px;
  }

  .si-card {
    padding: 22px;
  }

  .si-logo-text img {
    max-width: 130px;  /* smaller on mobile */
  }
    .si-field input{
    height:50px;
    font-size:14px;
    padding:0 46px 0 44px;
  }

  .si-eye{
    right:14px;
  }
}