body{
  margin: 0 !important;
}

#wrp-form-container {
  max-width: 700px;
  margin: 40px auto;
  font-family: "Poppins", sans-serif;
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


#wrp-progress {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 5px;
  margin-bottom: 30px;
  overflow: hidden;
}

#wrp-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #2ecc71);
  border-radius: 5px;
  transition: width 0.4s ease;
}

.wrp-page {
  display: none;
}
.wrp-page[data-page="1"] {
  display: block;
}

.wrp-page h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}
.wrp-page h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #555;
}

.wrp-page label {
  display: flex;
  margin-top: 15px;
  font-weight: 500;
  color: #444;
  gap: 10px;
  align-items: center;
}

.wrp-page input[type="radio"],
.wrp-page input[type="checkbox"] {
  width: 15px;
  height: 15px;
}

.wrp-page input,
.wrp-page select,
.wrp-page textarea {
  width: 100%;
  padding: 12px 15px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: all 0.3s;
}

.wrp-page input:focus,
.wrp-page select:focus,
.wrp-page textarea:focus {
  border-color: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
  outline: none;
}

.wrp-page button {
  margin-top: 25px;
  padding: 12px 30px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.wrp-page button:hover {
  background: #45a049;
  transform: translateY(-2px);
  color: #fff;
}

.wrp-next,
.wrp-page button[type="submit"] {
  margin-top: 25px;
  padding: 12px 30px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.wrp-next:hover,
.wrp-page button[type="submit"]:hover {
  background: #45a049;
  transform: translateY(-2px);
}

.wrp-question {
  padding: 15px;
  margin-bottom: 15px;
  background: #f7f7f7;
  border-radius: 10px;
  transition: all 0.3s;
}

.wrp-question:hover {
  background: #f0fff0;
}

#wrp-message {
  text-align: center;
  font-size: 18px;
  color: #333;
  padding: 30px;
  background: #f7f7f7;
  border-radius: 12px;
  display: none;
}

/* Error highlight for missing required fields */
.wrp-error {
  border-color: #e74c3c !important;
  background: #fdecea;
}


.wrp-header {
    border-bottom: 1px solid #eee;
    padding: 15px 0px;
    margin: auto;
    display: flex;
    justify-content: center;
}


.wrp-header-inner {
    display: flex;
    width: 700px;
    justify-content: space-between;
    align-items: center;
}

.wrp-logo img {
    max-height: 70px;
    width: auto;
}

.wrp-title h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}