/* Login split-screen: form a sinistra, racconto a destra */
body { font-family: 'Outfit', sans-serif; }

.accesso {
  display: grid;
  grid-template-columns: minmax(400px, 46%) 1fr;
  min-height: 100vh;
  align-items: stretch;
}

.accesso-card {
  border-top: none;
  box-shadow: none;
  align-self: center;
  justify-self: center;
  width: min(410px, 92%);
}

.brand-pannello {
  background: linear-gradient(150deg, #1a1a2e 0%, #16213e 55%, #0f2f43 100%);
  color: #fff;
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.brand-pannello h2 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand-pannello h2 b { color: #2E9FE6; }

.brand-sotto {
  font-size: 15.5px;
  line-height: 1.65;
  color: #C9D4E2;
  max-width: 52ch;
}

.brand-chat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 440px;
}

.brand-chat-testa {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #A9E5C8;
  margin-bottom: 4px;
}

.brand-chat-testa .pallino {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25D366;
}

.brand-bolla {
  max-width: 88%;
  font-size: 13px;
  line-height: 1.45;
  padding: 8px 11px;
  border-radius: 10px;
}

.brand-bolla.c { align-self: flex-start; background: rgba(255,255,255,.92); color: #26303B; border-top-left-radius: 0; }
.brand-bolla.i { align-self: flex-end; background: #D9FDD3; color: #1F3325; border-top-right-radius: 0; }

.brand-chips { display: flex; flex-wrap: wrap; gap: 10px; max-width: 460px; }

.brand-chips span {
  font-size: 12.5px;
  font-weight: 600;
  color: #D9E2EE;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 7px 14px;
}

.brand-chips span::first-letter { color: #F5A623; }

.brand-firma { font-size: 12px; color: #8FA0B5; margin-top: 10px; }

@media (max-width: 900px) {
  .accesso { grid-template-columns: 1fr; }
  .brand-pannello { display: none; }
}
