/* Auth embedded in main Ribblu layout (header + footer). */
.rbl-auth-page {
  background: var(--bg, #f7f5f2);
  padding: 40px 0 64px;
}
.rbl-auth-page .rbl-auth-lead-title {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink, #1a1a1a);
  margin-bottom: 12px;
}
.rbl-auth-page .rbl-auth-lead-text {
  color: var(--muted, #666);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 36rem;
}
.rbl-auth-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rbl-auth-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.rbl-auth-steps .rbl-auth-step-num {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange, #f76c1b);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rbl-auth-steps .rbl-auth-step-body strong {
  display: block;
  color: var(--ink, #1a1a1a);
  margin-bottom: 2px;
}
.rbl-auth-steps .rbl-auth-step-body span {
  color: var(--muted, #666);
  font-size: 0.95rem;
}

.rbl-auth-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.06);
}
.rbl-auth-card h1 {
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--ink, #1a1a1a);
}
.rbl-auth-card .rbl-auth-sub {
  color: var(--muted, #666);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.rbl-auth-card .rbl-auth-sub a {
  color: var(--orange, #f76c1b);
  font-weight: 600;
  text-decoration: none;
}
.rbl-auth-card .rbl-auth-sub a:hover {
  text-decoration: underline;
}

.rbl-auth-panel {
  display: none;
}
.rbl-auth-panel.is-active {
  display: block;
}

.rbl-auth-social {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.rbl-auth-social .btn {
  width: 100%;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
}
.rbl-auth-btn-facebook {
  background: #3b5998 !important;
  border-color: #3b5998 !important;
  color: #fff !important;
}
.rbl-auth-btn-facebook:hover {
  background: #334f88 !important;
  border-color: #334f88 !important;
  color: #fff !important;
}
.rbl-auth-btn-google {
  background: #c32f10 !important;
  border-color: #c32f10 !important;
  color: #fff !important;
}
.rbl-auth-btn-google:hover {
  background: #a8280d !important;
  border-color: #a8280d !important;
  color: #fff !important;
}
.rbl-auth-social .btn i {
  margin-right: 8px;
}

.rbl-auth-or {
  position: relative;
  text-align: center;
  margin: 8px 0 18px;
  color: #999;
  font-size: 0.9rem;
}
.rbl-auth-or::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid #e5e5e5;
  z-index: 0;
}
.rbl-auth-or span {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 12px;
}

.rbl-auth-card .form-control {
  border-radius: 10px;
  padding: 10px 12px;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
}
.rbl-auth-card .form-control:focus {
  background: #fff;
  border-color: var(--orange, #f76c1b);
  box-shadow: 0 0 0 0.2rem rgba(247, 108, 27, 0.15);
}
.rbl-auth-pwd {
  position: relative;
}
.rbl-auth-pwd .rbl-auth-pwd-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #888;
  cursor: pointer;
  padding: 0;
  font-size: 0.85rem;
}
.rbl-auth-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 8px 0 16px;
  font-size: 0.9rem;
}
.rbl-auth-meta a {
  color: var(--orange, #f76c1b);
  text-decoration: none;
}
.rbl-auth-meta a:hover {
  text-decoration: underline;
}
.rbl-auth-submit {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  background: var(--orange, #f76c1b);
  color: #fff;
}
.rbl-auth-submit:hover {
  filter: brightness(0.95);
  color: #fff;
}
.rbl-auth-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 14px;
  margin-bottom: 0;
}
.rbl-auth-bonus {
  color: #c0392b;
  font-weight: 600;
  margin-bottom: 16px;
}
.rbl-auth-alert {
  margin-bottom: 14px;
}

@media (max-width: 991.98px) {
  .rbl-auth-page {
    padding: 28px 0 48px;
  }
  .rbl-auth-lead {
    margin-bottom: 28px;
  }
}
