.finder-layout {
  width: 70%;
  margin: 180px auto 0 auto;
  box-sizing: border-box;
}

.finder-inner-layout {
  max-width: 700px;
  margin: auto;
}

.finder-title {
  color: #1b6585;
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
}

.finder-desc {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
}

.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto;
  width: 100%;
}

.step {
  position: relative;
  z-index: 1;
}

.circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid #1b6585;
  background-color: transparent;
  color: #1b6585;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  box-sizing: border-box;
  cursor: pointer;
}

.circle.completed {
  background-color: #1b6585;
  color: white;
}

.line {
  flex-grow: 1;
  height: 2px;
  background-color: #1b6585;
  z-index: 0;
  margin: 0 -1px;
}

.wizard-content {
  width: 100%;
  border-radius: 32px;
  background: #fff;
  box-shadow: 4px 6px 20.9px 1px rgba(165, 167, 170, 0.28);
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 44px 48px;
  box-sizing: border-box;
  margin: auto;
}

.button-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 350px;
}

.custom-button {
  border-radius: 34px;
  background: #196585;
  display: inline-flex;
  padding: 12px 32px;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
}

.button-text {
  color: #fff;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.back-button {
  background: none;
  border: none;
  color: #1b6585;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  padding: 12px 32px;
  margin-right: 12px;
  text-decoration: underline;
}

.wizard-content-title {
  color: #1c1736;
  text-align: start;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.wizard-content-description {
  color: #1c1736;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 6px;
}

.custom-select {
  width: 280px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #605a7d;
  background-color: white;
  color: #41484d;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,50 70,100 120,50' stroke='%23605A7D' stroke-width='20' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  box-sizing: border-box;
  margin-top: 24px;
}

.custom-input-wrapper {
  display: flex;
  align-items: center;
  margin-top: 24px;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
}

.custom-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #605a7d;
  background-color: white;
  color: #41484d;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  box-sizing: border-box;
}

.custom-input-unit {
  margin-left: 12px;
  white-space: nowrap;
  color: var(--material-theme-sys-light-tertiary, #605a7d);
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.custom-select:focus {
  outline: none;
  border-color: #1b6585;
}

.custom-select-wrapper {
  width: 100%;
}

@media (max-width: 991px) {
  .finder-inner-layout {
    max-width: 100%;
  }

  .finder-title {
    font-size: 24px;
  }

  .finder-desc {
    font-size: 18px;
  }

  .circle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .button-wrapper {
    justify-content: center;
  }

  .button-text {
    font-size: 16px;
  }

  .back-button {
    font-size: 16px;
  }

  .wizard-content {
    padding: 32px 30px;
  }

  .wizard-content-title {
    font-size: 20px;
  }

  .wizard-content-description {
    font-size: 14px;
  }

  .custom-select {
    width: 100%;
    font-size: 16px;
  }

  .custom-input-wrapper {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
  }

  .custom-input {
    font-size: 16px;
  }

  .custom-input-unit {
    font-size: 16px;
    margin-left: 8px;
  }
}
