/* RealtyForecaster Header Auth Links */
.rf-header-auth{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  margin-left:auto;
  flex-wrap:wrap;
  position:relative;
  z-index:50;
}

.rf-auth-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:38px;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(7,21,39,.12);
  background:#ffffff;
  color:#071527 !important;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  line-height:1;
  box-shadow:0 8px 20px rgba(7,21,39,.06);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.rf-auth-link:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(7,21,39,.11);
  border-color:#35d0c8;
}

.rf-auth-signup{
  background:linear-gradient(135deg,#35d0c8,#65f2aa);
  color:#062033 !important;
  border-color:transparent;
}

.rf-auth-admin{
  background:#071527;
  color:#ffffff !important;
  border-color:#071527;
}

.rf-auth-logout{
  background:#f8fafc;
  color:#334155 !important;
}

.rf-auth-account{
  background:#e7fbf8;
  border-color:#bfefea;
  color:#075f5a !important;
}

.rf-auth-account span{
  display:inline-flex;
  padding:3px 7px;
  border-radius:999px;
  background:rgba(255,255,255,.8);
  color:#075f5a;
  font-size:11px;
  text-transform:capitalize;
}

@media(max-width:820px){
  .rf-header-auth{
    width:100%;
    justify-content:center;
    margin:10px 0 0;
  }

  .rf-auth-link{
    flex:1 1 auto;
    min-width:105px;
  }
}
