body {
  background-color: #111729;
  color: #fff;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
    font-family: "Poppins", sans-serif;
}
h2{
    font-size: 2em !important;
}
.container {
  text-align: center;
  width: 90%;
  max-width: 900px;
    font-family: "Poppins", sans-serif;
}

/* --- Inline logo + brand name --- */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 80px;
}

.brand-logo {
  width: 100px;
  height: auto;
}

.brand-name {
  font-size: 3rem;
  font-weight: 500;
  margin: 0;
}

/* --- Headings and text --- */
h2 {
  font-weight: 500;
  margin-bottom: 10px;
}

.sub {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
  margin-top: -10px;
}

.coming {
  margin-bottom: 80px;
  color: #fff;
  font-size: 1.2rem !important;
}

/* --- Form --- */
form {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  text-align: left;
  font-family: "Poppins", sans-serif;
}

.form-label {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 12px;
  max-width: 700px;
  line-height: 1.4;
}

.input-container {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 900px;
  align-items: center;
}
.input-container::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("images/mail.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.8;
}
input {
  flex: 1;
  padding: 12px 16px 12px 44px; /* make space for icon */
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #111729;
  background-color: #fff;
  outline: none;
  height: 20px;
}

/* Chrome autofill fix */
input:-webkit-autofill {
  box-shadow: 0 0 0 30px #fff inset !important; /* keeps background white */
  -webkit-text-fill-color: #111729 !important;
}

/* Button styling (no change) */
button {
  background-color: #5E2BFF;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  margin-left: 10px;
  font-family: "Poppins", sans-serif;
}


button:hover {
  background-color: #5E2BFF;
}

.small-text {
  margin-top: 10px;
  color: #FF6542;
  font-size: 0.85rem;
  max-width: 600px;
  line-height: 1.4;
}

#status {
  margin-top: 15px;
  font-size: 0.95rem;
  text-align: center;
}
/* Loader spinner */
.loader {
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Disable button style during loading */
button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.loader {
  margin-left: 0;
}