/* /servicios/modal-auths.css — estilos del modal de autenticación */

.lx-auth-backdrop{
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(2, 8, 23, .55);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
}
.lx-auth-backdrop[hidden]{ display: none; }

.lx-auth-card{
  position: relative;
  width: min(560px, 92vw);
  background: #0b0e14;
  color: #eaeef3;
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.lx-auth-close{
  position: absolute;
  right: 8px;
  top: 8px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #141a24;
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.lx-auth-tabs{
  display: flex;
  gap: 8px;
  margin: 6px 0 14px;
}
.lx-auth-tab{
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #2a3243;
  background: #151c27;
  color: #cfd7e6;
  cursor: pointer;
  font-weight: 600;
}
.lx-auth-tab.is-active{
  background: #0f1726;
  color: #fff;
  border-color: #33435f;
  box-shadow: inset 0 -2px 0 rgba(255,255,255,.06);
}

/* Paneles del modal */
.lx-auth-panel[hidden]{ display: none; }

.lx-auth-form{ display: grid; gap: 10px; }

.lx-auth-input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #2a3243;
  background: #0f1622;
  color: #eaeef3;
}
.lx-auth-input::placeholder{ color: #91a0b8; }

.lx-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
}
.lx-btn--full{ width: 100%; }
.lx-btn--primary{ background: #0c1220; }
.lx-btn--google{
  background: #19202d;
  color: #e7eefc;
  border: 1px solid #2a3243;
}
.lx-btn--google .g{
  width: 20px;
  height: 20px;
  display: block;
}

.lx-sep{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}
.lx-sep::before,
.lx-sep::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #243147;
}
.lx-sep span{
  color: #9fb0c9;
  font-size: .9rem;
}

.lx-msg{
  min-height: 1.1em;
  font-size: .9rem;
  margin-top: 2px;
}
.lx-muted{
  color: #9fb0c9;
  font-size: .9rem;
}
.lx-link{
  background: none;
  border: 0;
  color: #81a7ff;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  padding: 0;
  margin: 0;
}

/* Responsive */
@media (max-width: 420px){
  .lx-auth-card{ padding: 16px; }
}
