/* ═══════════════════════════════════════════════════
   Labin Login — layout full-screen split
   Inspirado no design LabSource/Revquo
   ═══════════════════════════════════════════════════ */

:root {
  --ll-green-deep:  #0f2c1e;
  --ll-green-mid:   #1a5c3a;
  --ll-green-light: #236b47;
  --ll-accent:      #42af7d;
  --ll-btn-from:    #13314d;
  --ll-btn-to:      #42af7d;
  --ll-right-bg:    #f8f8f6;
  --ll-text:        #0f1a26;
  --ll-muted:       #94a3b8;
  --ll-border:      #e2e8f0;
  --ll-radius:      12px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--ll-right-bg);
}

/* ── Layout principal ── */
.ll-page {
  min-height: 100vh;
  display: flex;
}

/* ══════════════════════════════════════
   PAINEL ESQUERDO — hero
══════════════════════════════════════ */
.ll-hero {
  display: none; /* oculto em mobile */
  position: relative;
  width: 52%;
  flex-shrink: 0;
  overflow: hidden;
  /* cor base — sempre visível mesmo sem imagem */
  background-color: var(--ll-green-deep);
}

/* Gradiente de profundidade */
.ll-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    var(--ll-green-deep),
    var(--ll-green-mid),
    var(--ll-green-light)
  );
  z-index: 0;
}

/* Imagem — blend overlay sobre o gradiente */
.ll-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  opacity: 0.35;
  z-index: 1;
}

/* Vídeo — mesmo princípio: blend overlay */
.ll-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: overlay;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

/* Círculos decorativos */
.ll-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.ll-circle-a {
  width: 500px; height: 500px;
  top: -130px; left: -130px;
  background: rgba(255,255,255,0.045);
}

.ll-circle-b {
  width: 460px; height: 460px;
  bottom: -120px; right: -120px;
  background: rgba(255,255,255,0.045);
}

.ll-circle-c {
  width: 680px; height: 680px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.07);
  background: transparent;
}

.ll-circle-d {
  width: 420px; height: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.07);
  background: transparent;
}

/* Conteúdo do hero */
.ll-hero-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 44px 52px;
  color: #fff;
}

/* Logo */
.ll-hero-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ll-hero-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ll-hero-logo-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}

.ll-hero-logo-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
}

/* Tagline — centralizada verticalmente */
.ll-hero-tagline {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.ll-hero-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.ll-hero-title {
  margin: 0;
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
}

.ll-hero-sub {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
}

.ll-hero-footer {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.24);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   PAINEL DIREITO — formulário
══════════════════════════════════════ */
.ll-form-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ll-right-bg);
  padding: 40px 24px;
}

.ll-form-inner {
  width: 100%;
  max-width: 340px;
}

/* Logo mobile (oculta em desktop) */
.ll-form-logo-mobile {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.ll-form-logo-mobile img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.ll-form-logo-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--ll-text);
  letter-spacing: -0.02em;
}

/* Cabeçalho do form */
.ll-form-header {
  margin-bottom: 32px;
}

.ll-form-header h1 {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ll-text);
  line-height: 1.1;
}

.ll-form-header p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--ll-muted);
  letter-spacing: 0.01em;
}

/* ── Reset: remove estilos Bootstrap/Mayan no contexto do form ── */
.ll-form-body .content.login,
.ll-form-body .form-group,
.ll-form-body .group.wat-cf {
  margin: 0;
  padding: 0;
}

.ll-form-body .form-group {
  margin-bottom: 14px;
}

/* Labels minimalistas */
.ll-form-body label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* Oculta o texto "(obrigatório)" dos labels do Mayan */
.ll-form-body label .required,
.ll-form-body label abbr {
  display: none;
}

/* Inputs */
.ll-form-body input[type="text"],
.ll-form-body input[type="email"],
.ll-form-body input[type="password"],
.ll-form-body input[type="search"],
.ll-form-body select,
.ll-form-body textarea,
.ll-form-body .form-control {
  display: block;
  width: 100%;
  height: 46px;
  padding: 0 16px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 400;
  color: var(--ll-text);
  background: #fff;
  border: 1.5px solid var(--ll-border);
  border-radius: var(--ll-radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
}

.ll-form-body input:focus,
.ll-form-body select:focus,
.ll-form-body textarea:focus,
.ll-form-body .form-control:focus {
  border-color: var(--ll-accent);
  box-shadow: 0 0 0 3px rgba(66, 175, 125, 0.14);
}

/* Botão submit */
.ll-submit-group {
  margin-top: 22px !important;
}

.ll-btn-submit {
  display: block;
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: var(--ll-radius);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--ll-btn-from) 0%, var(--ll-btn-to) 100%);
  box-shadow: 0 4px 18px rgba(19, 49, 77, 0.32);
  transition: opacity 0.15s ease, transform 0.08s ease;
}

.ll-btn-submit:hover  { opacity: 0.92; }
.ll-btn-submit:active { transform: translateY(1px); }

/* Link "Esqueceu a senha" */
.ll-forgot {
  margin-top: 16px;
  text-align: right;
}

.ll-forgot a {
  font-size: 12px;
  font-weight: 500;
  color: var(--ll-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.ll-forgot a:hover {
  color: var(--ll-accent);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (min-width: 1024px) {
  .ll-hero             { display: flex; flex-direction: column; }
  .ll-form-logo-mobile { display: none; }
}

@media (max-width: 1023px) {
  .ll-hero { display: none; }
  .ll-form-panel {
    background: var(--ll-right-bg);
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .ll-form-panel { padding: 32px 20px; }
  .ll-form-header h1 { font-size: 26px; }
}
