@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&display=swap");

* {
  font-family: "Poppins", sans-serif !important;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  height: 100vh;
  /* padding: 0 1.1rem; */
  background-color: white;
  width: 100%;
}

.form-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 16.54rem;
  /* overflow: hidden; */
}

.form-container > img {
  position: absolute;
  z-index: -10;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

button {
  background-color: #7b2cbf;
  color: white;
  border: none;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
}

button:hover {
  background-color: #5a189a;
}

.header {
  height: 9.27rem;
  width: 16.5rem;
  justify-self: center;
  text-align: center;
  background-color: #fff7fa;
  padding-top: 2.9rem;
  margin-top: 3.95rem;
  position: relative;
  /* overflow: hidden; */
  flex-shrink: 0;

  /* border: 1px solid grey; */
}

.header h2 {
  font-size: 0.818rem;
  font-weight: 500;
  line-height: 110%;
}

.header p {
  font-size: 0.636rem;
  line-height: 120%;
  margin-top: 0.2rem;
}

.header img {
  /* width: 4.54rem; */
  width: 4.54rem;
  position: absolute;
  left: 0.4rem;
  top: 0.1rem;
}

.form-step h3 {
  font-size: 0.818rem;
  font-weight: 400;
}

.question-container {
  background-color: #fafafa;
  padding: 0.717rem;
  display: flex;
  flex-direction: column;
  margin-top: 0.8rem;
}

.question-container > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 15.27rem;
  height: 2.36rem;
  border: 1px solid #d9d9d9;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0.2rem;
  margin-top: 0.4rem;
  font-size: 0.727rem;
}

.question-container > input {
  border: none;
  border-bottom: 1px solid #d9d9d9;
  margin-top: 0.8rem;
  padding-top: 0.2rem;
  background-color: transparent;
}

::placeholder {
  color: #d9d9d9;
  font-size: 0.818rem;
}

.next-btn {
  width: 100%;
  background-color: #802a8f;
  height: 2.54;
  font-size: 0.9rem;
  border-radius: 0.2rem;
  margin-bottom: 1rem;
}

.last-form-step > p {
  font-size: 0.65rem;
}

.question-text-input-container {
  margin-top: 1rem;
 background-color: white;
  padding-bottom: 0;
  padding: 0;

}

.question-text-input-container label {
  all: unset;
  font-size: 0.636rem;
  font-weight: 400;
}

.question-text-input-container input {
  margin-top: 0.2rem;
}

#multiStepForm {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  
  
}

.last-form-step {
  margin: auto 0;
  padding: .8rem;
  background-color: none !important;
}

.last-text {
  color: #c2c2c2;
  font-size: 0.636rem !important;
  font-weight: 400;
  /* margin-left: 1rem; */
  line-height: 110%;
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.last-form-step > button{
    width: 110%;
    align-self: center;
    position: relative;
    left: -5%;
}