/* ─── demo.aitrack.it — Presto disponibile ───
   Stile copiato da apps/auth/src/styles/LoginRegistration.css
   (font Poppins via @fontsource, card bianca, bottone .btn-submit). */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('./fonts/poppins-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url('./fonts/poppins-latin-600-normal.woff2') format('woff2');
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #ffffff;
  min-height: 100dvh;
}

.coming-soon-layout {
  min-height: 100dvh;
  width: 100%;
  display: grid;
  place-items: center;
  background-color: #ffffff;
  padding: 0 16px;
}

.coming-soon-card {
  max-width: 400px;
  width: 100%;
  padding: 32px 24px 22px;
  background-color: #ffffff;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
  text-align: center;
}

.coming-soon-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.coming-soon-logo svg {
  width: 96px;
  height: auto;
  color: #000000;
}

.coming-soon-title {
  margin: 0 0 10px;
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-style: normal;
  color: #000000;
}

.coming-soon-subtitle {
  margin: 0 0 28px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 13px 20px;
  background-color: #006ce6;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}

.btn-submit-arrow {
  flex-shrink: 0;
}

.btn-submit:hover {
  background-color: #0058bf;
}

.btn-submit:active {
  background-color: #004a9f;
}

.btn-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.14);
}

@media (max-width: 480px) {
  .coming-soon-card {
    padding: 28px 20px 20px;
  }
}
