
/* === Overrides de color a naranja (#ed5b33) === */

/* Panel de bienvenida (borde izquierdo en escritorio) */
.kiwi-startup-common-section-info{
  border-left: 5px solid #ed5b33 !important;
}

/* Panel de bienvenida sin fondo (borde superior en móvil < 850px) */
@media (max-width:850px){
  .kiwi-startup-common--no-bg .kiwi-startup-common-section-info{
    border-top: 5px solid #ed5b33 !important;
  }
}

/* StartBNC (inputs con borde inferior) */
.kiwi-startbnc-form input,
.kiwi-startbnc-form input:active{
  border-bottom: 2px solid #ed5b33 !important;
}

/* Pestañas activas en el sidebar (subrayado inferior) */
.kiwi-sidebar .u-tabbed-view-tab.u-tabbed-view-tab--active{
  border-bottom: 3px solid #ed5b33 !important;
}

/* ===== TerraChat: logo + título en la portada ===== */
form.kiwi-welcome-simple-form h2{
  position: relative;
  color: transparent;           /* ocultamos el texto original */
  line-height: 1.2em;
}

/* Logo encima del título */
form.kiwi-welcome-simple-form h2::before{
  content:"";
  display:block;
  width:220px;
  height:60px;
  margin:0 auto 12px;
  background-image:url('https://terrachat.gratis/wp-content/uploads/2025/08/terra-chat-gratis.png');
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
}

/* Texto nuevo del título */
form.kiwi-welcome-simple-form h2::after{
  content:"Bienvenido a Terra Chat";
  color:#fff;                   /* asegura contraste en el tema oscuro */
}

