:root {
  --primary-color: #0B2D4F;
  --secondary-color:  #F57C00;
  --dark: #0c0c0c;
  --light-bg: #F2F4F8;
}

/* 🔒 GLOBAL RESET */
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  background: var(--light-bg);
}
.bg-color{
  background:var(--light-bg);
}

/* 📱 Allow scroll on mobile */
@media (max-width: 991px) {
  html, body {
    overflow: auto;
  }
  .auth-wrapper{
    background: var(--light-bg) !important;
  }
}

@media (max-width: 991px)  {
  html, body {
    overflow: auto;
  }
  .auth-wrapper{
    background: var(--light-bg) !important;
  }
  .auth-box {
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 6px; /* prevents scrollbar overlap */
  }
  .auth-box::-webkit-scrollbar {
    width: 3px;
  }
  .auth-logo{
    width: 250px;
    margin-bottom: 20px;
  }
  
  .auth-box::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }
  
}

/* FULL SCREEN WRAPPER */
.auth-wrapper {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background:#0B2D4F;
}
/* AUTH BOX */
.auth-box {
  width: 100%;
  max-width: 420px;
}
.auth-box1{
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 6px; /* prevents scrollbar overlap */
}
.auth-box1::-webkit-scrollbar {
  width: 3px;
}

.auth-box1::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}


/* LOGO */
.auth-logo {
  width: 200px;
}

/* INPUTS */
.form-control {
  height: 48px;
  border-radius: 10px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(201,162,77,.25);
}

/* PASSWORD */
.password-box {
  position: relative;
}

.password-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
}

/* BUTTON */
.btn-gold {
  height: 48px;
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  background: transparent;
  font-weight: 600;
}

.btn-gold:hover {
  background:var(--secondary-color);
  color: var(--primary-color);
}

/* LINKS */
.link-gold {
  color: var(--primary-color);
  text-decoration: none;
}

.link-gold:hover {
  text-decoration: underline;
}

/* SOCIAL */
.btn-social {
  height: 46px;
  border-radius: 12px;
  border: 2px solid #ddd;
  background: #fff;
}
.btn-social:hover {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

/* BRAND PANEL */
.brand-panel {
  background: var(--primary-color);
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.brand-content {
  max-width: 420px;
}

.brand-content h1 {
  color: #fff;
  margin-bottom: 20px;
}

.brand-content p,
.brand-content span {
  color: var(--light-bg);
}

/* STATS / FEATURES */
.stats {
  display: flex;
  justify-content: space-between;
}
.stats h3{
  color: #Fff;
}
.stats span{
  color: #a8a8a8;
}
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

.feature-list i {
  color:#fff;
  margin-right: 10px;
}