:root {
  --app-height: 100dvh;
}

body {
  height: var(--app-height);
  background: url("../images/nuopod-hero-bg.png");
  background-size: cover;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.hero-container {
  height: 100%;
  padding: 20px 10px;
}

.logo img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 80px;
  transition: all 0.3s ease;
}

.content {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.input-email {
  flex-grow: 1;
  border-radius: 5px 0px 0px 5px;
  padding: 10px;
}

.btn-submit {
  border-radius: 0px 5px 5px 0px;
  height: 45px;
  width: 130px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-submit:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.social-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-box:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: #ffffff;
}

#notifyForm {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.text-thanks {
  color: greenyellow;
}

@media (max-width: 576px) {
  body {
    height: 100dvh;
  }

  .logo img {
    height: 90px;
  }

  .content {
    max-width: 90%;
  }

  h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem !important;
  }

  p.opacity-50 {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1.5rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .social-box {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    margin: 0 2px;
  }

  .input-email {
    font-size: 0.9rem;
  }

  .copyright-text {
    font-size: 0.75rem;
    margin-top: 10px !important;
  }
}

@media (max-height: 600px) {
  .logo img {
    height: 40px;
  }

  .hero-container {
    padding: 10px;
  }

  .content {
    margin-top: 0;
  }

  p.opacity-50 {
    display: none;
  }
}
