/* ========== HEADER COMPARTIDO ========== */
.shared-auth-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1216 0%, #2c3e50 100%);
  color: white;
  padding: 18px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

    .shared-auth-header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("/img/bg/registro/auth-bg.png") no-repeat center center;
        background-size: cover;
        opacity: 0.14;
    }

.shared-auth-header__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.shared-auth-header__module {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  color: #fb7305;
  font-weight: 600;
}

.shared-auth-header__logo {
  width: 54px;
  height: 54px;
  background: rgba(251, 115, 5, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 2px solid rgba(251, 115, 5, 0.28);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.12);
}

.shared-auth-header__logo i {
  font-size: 22px;
  color: #fb7305;
}

.shared-auth-header__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.shared-auth-header__subtitle {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 14px;
  color: white;
}

.shared-auth-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.shared-auth-header__btn {
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.shared-auth-header__btn--ghost {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shared-auth-header__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.shared-auth-header__btn--light {
  color: #fb7305;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.06);
}

.shared-auth-header__btn--light:hover {
  background: #fff7ef;
  color: #fb7305;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .shared-auth-header {
    padding: 22px 22px;
  }

  .shared-auth-header__module {
    font-size: 13px;
  }

  .shared-auth-header__logo {
    width: 60px;
    height: 60px;
  }

  .shared-auth-header__logo i {
    font-size: 25px;
  }

  .shared-auth-header__title {
    font-size: 21px;
  }

  .shared-auth-header__subtitle {
    font-size: 13px;
  }
}

/* ========== ROOT VARIABLES ========== */
:root {
  --brand: #fb7305;
  --brand-2: #ff9d42;
  --dark: #0f1216;
  --soft: #f6f7fb;
  --muted: #6b7280;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, var(--soft) 0%, #ffffff 100%);
}