/* .bitogrid-form {
    max-width: 700px;
    margin: 0 auto;
}

.bitogrid-form input,
.bitogrid-form textarea,
.bitogrid-form select {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.bitogrid-form button {
    background-color: #007cba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.bitogrid-form button:hover {
    background-color: #005a87;
} */


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=REM:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=REM:ital,wght@0,100..900;1,100..900&display=swap');
/* Form Container */
.step-form {
  box-sizing: border-box;
  width: 750px;
  max-width: 100%;
  font-family: Roboto, sans-serif;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  margin: 40px auto;
  box-shadow: 
    0px 2px 4px -1px rgba(0, 0, 0, 0.2), 
    0px 4px 5px -2px rgba(0, 0, 0, 0.14), 
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

/* Step Section */
.step-form__step {
  margin-bottom: 30px;
}

/* Step Title */
.step-form__step h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

/* Labels */
.step-form__step label {
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #444;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: "Open Sans", sans-serif;
}

/* Inputs & Textareas */
.step-form__input {
  display: block;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fafafa;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.step-form__input:focus {
  border-color: #1976d2;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

/* Radio Options */
.step-form__step input[type="radio"] {
  display: inline-block;
  width: auto;
  margin-right: 8px;
  margin-left: 0;
}

.step-form__step div label {
  display: inline-block;
  margin-right: 16px;
  font-weight: normal;
}

/* Textarea Resizing */
.step-form__step textarea.step-form__input {
  resize: vertical;
  min-height: 100px;
}

/* Optional Ripple Placeholder */
.step-form__input-ripple {
  display: none;
}

.step-form__title {
  box-sizing: inherit;
  padding: 16px 16px 8px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 1.25rem;
  line-height: 1.25rem;
}
.step-form__step {
  position: relative;
  display: none;
  box-sizing: inherit;
  padding: 16px 16px 8px;
}
.step-form__step--active {
  display: block;
}
.step-form__label {
  position: absolute;
  top: 33px;
  left: 32px;
  box-sizing: inherit;
  color: rgba(0, 0, 0, 0.6);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.125rem;
  letter-spacing: 0.01em;
  cursor: text;
  transform: scale(1) translateY(0%);
  transform-origin: left top;
  transition: color 180ms ease-out, transform 180ms ease-out;
}
.step-form__label--float {
  transform: scale(0.75) translateY(-85%);
  transition-duration: 90ms;
}
.step-form__step--focused .step-form__label--float {
  color: #6200ee;
}
.step-form__step--focused.step-form__step--invalid .step-form__label--float {
  color: #f44336;
}
.step-form__input {
  display: block;
  box-sizing: inherit;
  width: 100%;
  padding: 20px 16px 4px;
  color: rgba(0, 0, 0, 0.87);
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.75rem;
  background-color: rgba(0, 0, 0, 0.04);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px 4px 0px 0px;
  caret-color: #6200ee;
  transition: background-color 180ms ease-out, border-color 180ms ease-out;
}
.step-form__input:hover {
  background-color: rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.6);
}
.step-form__input:focus {
  background-color: rgba(0, 0, 0, 0.12);
}
.step-form__step--invalid .step-form__input {
  background-color: rgba(244, 67, 54, 0.08);
  border-bottom-color: rgba(244, 67, 54, 0.6);
  caret-color: #f44336;
}
.step-form__step--invalid .step-form__input:hover {
  background-color: rgba(244, 67, 54, 0.12);
  border-bottom-color: rgba(244, 67, 54, 0.87);
}
.step-form__input-ripple {
  position: absolute;
  bottom: 8px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: #6200ee;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 75ms ease-out 100ms, transform 180ms ease-out;
}
.step-form__step--focused .step-form__input-ripple {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0ms;
}
.step-form__step--invalid .step-form__input-ripple {
  background-color: #f44336;
}
.step-form__progress {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 16px 4px;
  counter-reset: progress-step;
}
.step-form__progress-step {
  position: relative;
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  box-sizing: inherit;
  height: 24px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 0.75rem;
  line-height: 24px;
  cursor: default;
  transition: color 180ms ease-out, background-color 180ms ease-out;
  counter-increment: progress-step;
}
.step-form__progress-step::before {
  position: absolute;
  top: auto;
  left: 0px;
  width: calc(100% - 24px);
  height: 2px;
  background-color: rgba(0, 0, 0, 0.12);
  content: "";
}
.step-form__progress-step::after {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  content: counter(progress-step);
}
.step-form__progress-step::before, .step-form__progress-step::after {
  transition: color 180ms ease-out, background-color 180ms ease-out;
}
.step-form__progress-step--complete {
  color: rgba(255, 255, 255, 0.87);
}
.step-form__progress-step--complete::before, .step-form__progress-step--complete::after {
  background-color: rgba(76, 175, 80, 0.87);
}
.step-form__progress-step--active {
  color: rgba(255, 255, 255, 0.87);
}
.step-form__progress-step--active::before, .step-form__progress-step--active::after {
  background-color: #6878d6;
}
.step-form__action {
  display: flex;
  justify-content: space-between;
  box-sizing: inherit;
  padding: 8px;
}
.step-form__button {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: inherit;
  height: 36px;
  padding: 0px 8px;
  color: #6200ee;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  border-radius: 2px;
}
.step-form__button:hover,.step-form__button:focus{
  background-color: #6878d6;
  color: white;
}
.step-form__button::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: currentColor;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 90ms ease-out;
}
.step-form__button:hover::before {
  opacity: 0.04;
}
.step-form__button:focus::before {
  opacity: 0.08;
}
.step-form__button:active::before {
  opacity: 0.12;
}
.step-form__button:nth-child(1) {
  margin-right: auto;
}
.step-form__button:nth-child(2), .step-form__button:nth-child(3) {
  margin-left: auto;
}
.step-form__button--active {
  display: inline-flex;
}

html, body {
  height: 100%;
}
.clear{
    display: flex;
    align-content: center;
    justify-content: center;
}
body {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  background-color: #e0e0e0;
}
.step-form__step.step-form__step--active h6{
  font-style: italic;
}

.step-form__step.step-form__step--active.step-form__step input{
  border: 1px solid #dddddd;
    background: #fafafa;
}
.step-form__step.step-form__step--active.step-form__step textarea{
  border: 1px solid #dddddd;
    background: #fafafa;
}