/* TrendishShop v199 — MOBILE ONLY auth brand removal.
   Removes the entire logo/welcome block from the login/register modal on phones.
   Tabs move to the top with compact spacing. Desktop remains untouched. */

@media (max-width:600px){
  .auth-modal-modern .auth-modal-card{
    padding-top:10px!important;
  }

  /* Remove the whole brand area: logo + welcome texts. */
  .auth-modal-modern .auth-modal-brand{
    display:none!important;
  }

  /* Bring login/register tabs right to the top of the card. */
  .auth-modal-modern .auth-modal-tabs{
    margin-top:4px!important;
    margin-bottom:10px!important;
  }

  /* Keep close button aligned with the compact top section. */
  .auth-modal-modern .auth-modal-close{
    top:9px!important;
    left:10px!important;
    z-index:4!important;
  }

  /* Reserve a little left space so the tabs never collide with the close button. */
  .auth-modal-modern .auth-modal-tabs{
    margin-left:44px!important;
  }

  .auth-modal.auth-keyboard-open .auth-modal-tabs{
    margin-top:2px!important;
    margin-bottom:8px!important;
  }
}

@media (max-width:360px){
  .auth-modal-modern .auth-modal-tabs{
    margin-left:40px!important;
  }
}
