/* Login propio del centro (dentro de /centro/) y panel ya logueado.
   Usa las variables del tema "Centro & Tutores" si están presentes. */

.l360-login,
.l360-panel{
  --l360-surface: var(--surface, #1c3a34);
  --l360-line: var(--line, rgba(242,239,230,0.12));
  --l360-chalk: var(--chalk, #f2efe6);
  --l360-chalk-dim: var(--chalk-dim, #b9c9c3);
  --l360-gold: var(--gold, #e8a33d);
  --l360-radius: var(--radius, 18px);

  max-width: 480px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  color: var(--l360-chalk);
}
.l360-login *, .l360-panel *{ box-sizing: border-box; }

.l360-login__eyebrow, .l360-panel__eyebrow{
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--l360-gold);
}
.l360-login h2, .l360-panel h2{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  margin: 8px 0 20px;
  color: var(--l360-chalk);
}

.l360-login__notice{
  background: rgba(200,70,60,0.14);
  border: 1px solid rgba(200,70,60,0.4);
  color: #f0a89f;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  margin-bottom: 18px;
}

.l360-login__form{
  background: var(--l360-surface);
  border: 1px solid var(--l360-line);
  border-radius: var(--l360-radius);
  padding: 24px;
}
.l360-login__field{ margin-bottom: 16px; }
.l360-login__field:last-of-type{ margin-bottom: 0; }
.l360-login__field label{
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
}
.l360-login__field input{
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--l360-line);
  background: rgba(255,255,255,0.06);
  color: var(--l360-chalk);
  font-size: 14.5px;
  font-family: inherit;
}
.l360-login__field input:focus{
  outline: 2px solid var(--l360-gold);
  outline-offset: 1px;
}

.l360-login__submit{
  width: 100%;
  margin-top: 18px;
  padding: 13px 20px;
  border: 0;
  border-radius: 10px;
  background: var(--l360-gold);
  color: #1c1305;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
.l360-login__submit:hover{ opacity: .92; }

.l360-login__cta{
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px dashed rgba(232,163,61,.4);
  border-radius: var(--l360-radius);
  text-align: center;
}
.l360-login__cta p{ margin: 0 0 6px; font-size: 13.5px; color: var(--l360-chalk-dim); }
.l360-login__cta p strong{ color: var(--l360-chalk); }
.l360-login__cta-link{
  display: inline-block;
  margin-top: 6px;
  color: var(--l360-gold);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.l360-login__cta-link:hover{ text-decoration: underline; }

/* ---------- panel ya logueado ---------- */
.l360-panel__cabecera{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.l360-panel__logout{
  font-size: 13px;
  color: var(--l360-chalk-dim);
  text-decoration: none;
  white-space: nowrap;
  padding-top: 4px;
}
.l360-panel__logout:hover{ color: var(--l360-gold); }
.l360-panel__hueco{
  background: var(--l360-surface);
  border: 1px dashed rgba(232,163,61,.4);
  border-radius: var(--l360-radius);
  padding: 26px;
  text-align: center;
}
.l360-panel__hueco p{ color: var(--l360-chalk-dim); font-size: 13.5px; line-height: 1.55; margin: 0; }
