/* === Global Styles === */
body {
  font-family: 'Baloo 2', cursive;
  margin: 0;
  padding: 0;
  background: #fff8f0;
  color: #333;
  font-size: 16px;
}

.title-text {
  font-size: 28px;
  color: #fff8f0;
  font-weight: bold;
  text-shadow: 1px 1px 2px #000;
}

/* === Header and Navigation === */
header {
  background-color: #ff6f00;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* === Footer === */
footer {
  background-color: #ff6f00;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* === Registration Section === */
.registration-section {
  padding: 40px;
  max-width: 500px;
  margin: auto;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px #ccc;
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: rgba;
}

.form-group {
  margin-bottom: 05px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 02px;
}

input,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #999;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-size: 16px;
}

input:focus,
select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 111, 0, 0.3);
}

/* Form Inputs */
#registerForm input {
  margin: 10px 0;
  border: 1px solid #ccc;
}

#registerForm input:focus {
  border-color: #e65100;
  outline: none;
}

/* Button */
#registerForm button {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  background-color: #e65100;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

#registerForm button:hover {
  background-color: #bf360c;
}

/* === Helper Text === */
.form-note {
  font-size: 16px;
  color: #666;
}

.live-status {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}
/* Only change mobile number field size */
#mobile {
  height: 48px;        /* set your desired height */
  padding: 10px 222px;  /* match other fields or adjust */
  border-radius: 8px;  /* match corner style */
  font-size: 16px;
}
