/* PAGE STRUCTURE */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;

  background: #f5f5f7;
}

/* =========================
   LOGO AREA
========================= */

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.logo {
  width: 160px;
  height: auto;

  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.logo:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
/* =========================
   FOOTER
========================= */

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;

  text-align: center;
  padding: 14px;

  font-size: 13px;
  color: #777;

  background: rgba(245, 245, 247, 0.8);
  backdrop-filter: blur(10px);
}
