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

body {
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.hero {
    height: 100vh;
  min-height: 100vh;
  background: url("../images/background.png") center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
}

.content {
  width: 100%;
  max-width: 1200px;
  padding: 40px 25px;
  text-align: center;
}

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

.logo-wrapper {
  text-align: center;
  margin-bottom: 4rem; /* adjust based on actual logo PNG */
  line-height: 0;
}

.logo {
  width: min(700px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================
   TAGLINE
========================= */

p {
  max-width: 950px;
  margin: 0 auto 35px;
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  line-height: 1.15;
  color: #111;
  font-weight: 400;
}

/* =========================
   SUCCESS MESSAGE
========================= */

.success-box {
    max-width: 650px;
    margin: 15px auto 0;
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

/* =========================
   FORM
========================= */

form {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  padding: 18px;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  text-align: left;
}

label {
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
  color: #111;
}

.form-group {
  display: flex;
  gap: 12px;
}

input {
  flex: 1;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0 16px;
  font-size: 16px;
  min-width: 0;
}

button {
  height: 48px;
  padding: 0 24px;
  border: none;
  border-radius: 30px;
  background: #000;
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  opacity: 0.95;
}

/* =========================
   LARGE TABLETS
========================= */

@media (max-width: 1024px) {
  .content {
    padding: 30px 20px;
  }

  .logo-wrapper {
    margin-bottom: -60px;
  }

  p {
    margin-bottom: 30px;
  }
}

/* =========================
   TABLETS
========================= */

@media (max-width: 768px) {
  .content {
    padding: 25px 20px;
  }

  .logo-wrapper {
    margin-bottom: -35px;
  }

  .logo {
    width: min(500px, 92vw);
  }

  p {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }

  form {
    padding: 16px;
  }

  label {
    font-size: 16px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {
  .content {
    padding: 20px 15px;
  }

  .logo-wrapper {
    margin-bottom: -20px;
  }

  .logo {
    width: min(360px, 95vw);
  }

  p {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  form {
    padding: 15px;
  }

  .form-group {
    flex-direction: column;
  }

  input,
  button {
    width: 100%;
  }

  button {
    margin-top: 8px;
  }

  label {
    font-size: 15px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 360px) {
  .logo {
    width: 280px;
  }

  p {
    font-size: 1rem;
  }

  button {
    font-size: 14px;
  }
}