/* JEEREX PNG identity overrides. The supplied raster asset remains unmodified. */
.brand {
  gap: 0;
}

.brand img {
  display: block;
  width: 190px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.button {
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary:hover {
  box-shadow: 0 15px 32px rgba(37, 99, 235, .3);
}

.identity-card {
  position: relative;
  z-index: 3;
  width: min(470px, 95%);
  padding: 34px 34px 29px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 35px 80px rgba(7, 28, 57, .16);
  backdrop-filter: blur(12px);
}

.identity-card > span {
  display: block;
  color: #6d7e94;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .2em;
}

.identity-card img {
  display: block;
  width: 100%;
  height: auto;
  margin: 15px 0 8px;
}

.identity-card p {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  text-align: center;
}

footer {
  background: #fff;
  color: #76869a;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 150px;
  height: 48px;
}

@media (max-width: 560px) {
  .brand img {
    width: 145px;
    height: 48px;
  }

  .identity-card {
    padding: 25px 22px;
  }

  .identity-card p {
    font-size: 16px;
  }
}
