* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  color: white;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

h1 {
  font-size: 32px;
  font-weight: bold;
}

h2 {
  color: red;
  margin-top: 10px;
}

hr {
  width: 70%;
  margin: 30px auto;
  border: 1px solid #777;
}

.subtitle {
  font-weight: bold;
  margin-bottom: 30px;
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.form-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, select {
  width: 280px;
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
}

.or {
  font-weight: bold;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 45px;
  width: 100%;
  background: white;
  color: black;
  border-radius: 5px;
  z-index: 10;
}

.dropdown-menu div {
  padding: 10px;
  cursor: pointer;
}

.dropdown-menu div:hover {
  background: #eee;
}


/* =========================
   NEXT BUTTON (FORCE STYLE)
   ========================= */

.next-btn-wrapper {
  margin-top: 35px;
  text-align: center;
  position: relative;
  z-index: 20;   /* 🔥 overlay se upar */
}

.next-btn {
  background-color: #e10600 !important;  /* 🔥 force red */
  color: #ffffff !important;
  border: none !important;
  padding: 14px 55px !important;
  font-size: 18px !important;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.next-btn:hover {
  background-color: #b00000 !important;
  transform: translateY(-2px);
}
