@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: #1a2e1a;
}

.bg-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 26, 0.82);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.logo-wrap {
  margin-bottom: 40px;
}

.logo-wrap img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.divider {
  width: 40px;
  height: 1px;
  background: rgba(117, 214, 156, 0.5);
  margin: 0 auto 28px;
}

h1 {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 480px) {
  .logo-wrap img {
    height: 60px;
  }
}
