/* 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 */
.si-field {
  position: relative;
  margin-bottom: 15px;
}

.si-field i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
}

.si-field input {
  width: 100%;
  padding: 12px 40px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.si-field input:focus {
  border-color: #ff7a18;
  outline: none;
}

/* PASSWORD EYE */
.si-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
}

/* 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 */
  }
}