* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans Devanagari', sans-serif;
  background: #f3f4f6;
  margin: 0;
}

/* 🔴 IMPORTANT: header/footer safe */
#header, #footer {
  width: 100%;
}

/* ================= MPBHOJ PAGE WRAPPER ================= */
.mpbhoj-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 12px;
}

/* ================= MPBHOJ CONTAINER ================= */
.mpbhoj-container {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
}

/* ================= TABS ================= */
.tabs {
  display: flex;
  gap: 6px;
  border-bottom: 2px solid #1d4ed8;
  margin-bottom: 18px;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #1d4ed8;
  background: #e0e7ff;
  border-radius: 14px 14px 0 0;
}

.tab.active {
  background: #1d4ed8;
  color: #ffffff;
}

/* ================= FORM ================= */
.form-box {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 14px;
  padding: clamp(16px, 4vw, 28px);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
}

.form-input:focus {
  border-color: #1d4ed8;
  outline: none;
}

/* ================= SUBMIT ================= */
.submit-box {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.submit,
.reset {
  padding: 12px 20px;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.submit {
  background: #15803d;
  color: #fff;
}

.reset {
  background: #e5e7eb;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
  }
  .tab {
    border-radius: 10px;
  }
}
