body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #101011;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  max-width: 600px;
  width: 100%;
  padding: 20px;
}
.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.toggle-btn {
  text-align: right;
}

.toggle-btn button {
  background-color: #3a3b42;
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-title,
.event-title {
  text-align: center;
}

h1,
h2 {
  margin: 10px 0;
}

form {
  margin-top: 20px;
}

/* .question {
  display: none;
  animation: fadeIn 0.5s;
} */

.question.active {
  display: block;
}

.form-group {
  background-color: #1a1a1b;
  padding: 32px;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-text {
  text-align: center;
  color: #7d7d7d;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: regular;
  font-size: 16px;
  margin: 8px 0px;
  color: #e0e0e0;
}

.question-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #ffffff;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #555555;
  background-color: #333338;
  color: #ffffff;
  border-radius: 25px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
}

.radio-group label,
.checkbox-group label {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #e0e0e0;
}

.radio-group input,
.checkbox-group input {
  margin-right: 10px;
}

button.next-btn,
button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: rgb(198, 52, 43);
  background: linear-gradient(
    360deg,
    rgba(198, 52, 43, 1) 0%,
    rgba(229, 174, 68, 1) 72%
  );
  border: none;
  border-radius: 50px;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
}

button[type="know-more"] {
  background-color: #3a3b42;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  margin: 8px;
}

button.next-btn:hover,
button[type="submit"]:hover {
  background-color: #555555;
}

body[lang="ur"] {
  direction: rtl;
  font-family: "Noto Nastaliq Urdu", serif;
}

body[lang="ur"] input,
body[lang="ur"] textarea {
  text-align: right;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* General container to wrap checkbox and apply the same styling globally */
.checkbox-container {
  position: relative;
  padding-left: 35px;
  margin: 10px 0;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
  display: inline-block;
  align-items: center;
}

/* Hide default checkbox */
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Custom checkbox design */
input[type="checkbox"] + .checkmark {
  position: absolute;
  top: -4;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #333338;
  border-radius: 5px;
  border: 2px solid #555555;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover effect */
input[type="checkbox"]:hover + .checkmark {
  background-color: #444750;
  border-color: #007bff;
}

/* Checked state style */
input[type="checkbox"]:checked + .checkmark {
  background-color: #007bff;
  border-color: #007bff;
}

/* Checkmark icon hidden by default */
input[type="checkbox"] + .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show checkmark when checked */
input[type="checkbox"]:checked + .checkmark:after {
  display: block;
}

/* Checkmark design */
input[type="checkbox"] + .checkmark:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* General container to wrap radio buttons */
.radio-container {
  position: relative;
  padding-left: 35px;
  margin: 10px 0;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  display: inline-block;
}

/* Hide default radio button */
input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Custom radio button design */
input[type="radio"] + .radiomark {
  position: absolute;
  top: -4;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #333338;
  border-radius: 50%;
  border: 2px solid #555555;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover effect */
.radio-container:hover input[type="radio"] + .radiomark {
  background-color: #444750;
  border-color: #007bff;
}

/* Checked state style */
input[type="radio"]:checked + .radiomark {
  background-color: #007bff;
  border-color: #007bff;
}

/* Indicator hidden by default */
input[type="radio"] + .radiomark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show indicator when checked */
input[type="radio"]:checked + .radiomark:after {
  display: block;
}

/* Style the inner dot for radio button */
.radio-container .radiomark:after {
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transform: translate(-50%, -50%);
}
