/* Font Satoshi (come in app): copiare Satoshi-Regular.woff2 e Satoshi-Bold.woff2 da app/public/fonts/ in ./font/ */
@font-face {
  font-family: 'Satoshi';
  src: url('./font/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./font/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: 'Satoshi', Arial, sans-serif;
}

body {
  background: #073b1d;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.page-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: #073b1d;
  padding: 6px 10px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.logo {
  display: block;
  object-fit: contain;
}

.logo--first {
  width: 69px;
  height: 30px;
}

.logo--second {
  width: 143px;
  height: 32px;
}

.card {
  width: 340px;
  min-width: 340px;
  max-width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 0 24px 0;
  text-align: center;
  color: #073b1d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-title {
  font-size: 19px;
  font-weight: 700;
  margin: 19px 0;
  color: #073b1d;
}

.card-divider {
  height: 1px;
  background-color: #073b1d;
  opacity: 0.1;
  margin: 0 -24px;
}

.card-divider:first-of-type {
  margin-bottom: 21px;
}

.card-divider:last-of-type {
  margin-top: 22px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 24em;
  width: 100%;
}

.card-description {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 13px;
  color: #073b1d;
}

.status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.status-text {
  font-size: 15px;
  font-weight: 700;
  color: #073b1d;
}

/* Pallino animato "Torniamo presto" */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9dc400;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
