@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.formbold-form-wrapper {
  margin: 0 auto;
  max-width: 550px;
  width: 100%;
  background: white;
}

.formbold-steps {
  padding-bottom: 18px;
  margin-bottom: 35px;
  border-bottom: 1px solid #dde3ec;
}

.formbold-steps ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.formbold-steps ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #536387;
}

.formbold-steps ul li span {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: #e6e9f4;
  color: #536387;
  border-radius: 50%;
  margin-bottom: 8px;
}

.formbold-step-menu1.active span,
.formbold-step-menu2.active span,
.formbold-step-menu3.active span {
  background: #6a64f1;
  color: white;
}

.formbold-step-menu1.active,
.formbold-step-menu2.active,
.formbold-step-menu3.active {
  font-weight: 600;
  color: #07074d;
}

.formbold-form-label {
  font-size: 14px;
  color: #536387;
  margin-bottom: 12px;
  font-weight: 500;
}

.formbold-form-input {
  width: 100%;
  padding: 13px 22px;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  background: white;
  font-weight: 500;
  font-size: 16px;
  color: #536387;
  outline: none;
  resize: none;
  margin-bottom: 24px;
}

.formbold-form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-back-btn {
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 5px;
  border: none;
  font-weight: 500;
  background-color: #07074d;
  color: white;
  cursor: pointer;
  width: 40%;
}

.formbold-btn {
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 5px;
  border: none;
  font-weight: 500;
  background-color: #6a64f1;
  color: white;
  cursor: pointer;
  width: 50%;
}

.formbold-form-btn-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
