html {
  height: 100%;
  box-sizing: border-box;
}

body {
  position: relative;
  box-sizing: inherit;
  font-family:
    'Roboto',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  min-height: 100%;
  padding-bottom: 6.75rem;
  margin: 0;
}

footer {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}

.card {
  background-color: white;
  display: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group:last-child {
  margin: 0;
}

.form-group > label {
  font-weight: bold;
  font-size: 0.9em;
  color: #333;
}

.form-group > input {
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;
  padding: 0.5rem;
}

.card.active {
  display: block;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  gap: 24px;
  align-items: center;
}

.step {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
  text-align: center;
  position: relative;
}

.step.active {
  background-color: #009b5b;
}

.step.completed {
  border: 2px solid #009b5b !important;
  color: transparent;
  background-color: transparent !important;
}

.step.completed::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #009b5b;
}

.step-title {
  color: gray;
}

.step-title.active {
  color: #009b5b;
  font-weight: bold;
}

.step-title.completed {
  color: #009b5b;
}

.progress-line {
  flex-grow: 1;
  height: 2px;
  background-color: lightgray;
}

.progress-line.completed {
  background-color: #009b5b;
}

.circle {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #8f9098;
  border: 1px solid #e9e9e9;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.title {
  color: #8f9098;
}

.title.active {
  color: #009b5b;
}

.title.completed {
  color: #009b5b;
}

.circle.active {
  background-color: #009b5b;
  color: #ffffff;
  border: none;
}

.circle.completed {
  border: 1px solid #009b5b !important;
  color: transparent;
  background-color: transparent !important;
}

.circle.completed::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #009b5b;
}

.step-line {
  height: 1px;
  background-color: #e9e9e9;
  flex: 1;
}

.step-line.completed {
  background-color: #009b5b;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f5f6f6;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content p {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.dropdown p:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

.input-with-button {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-button input {
  width: 100%;
  padding: 16px;
}

.input-with-button button {
  height: 40px;
  position: absolute;
  right: 4px;
  background-color: #009e54;
  color: white;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 4px;
  text-align: center;
  line-height: 16.41px;
  font-size: 14px;
  font-weight: 400;
}

.input-with-button button:disabled {
  background-color: #d3d3d3;
  cursor: not-allowed;
}

.invalid {
  border: 2px solid red;
}

.error-message {
  color: red;
  display: none;
}

.filled-bullet::marker {
  color: #009b5b;
}

.progress-status-title {
  color: #009b5b;
  display: none;
}

.progress-status-title.active {
  display: block;
}

.progress-status-title.inactive {
  display: none;
}

progress {
  margin-top: 16px;
  border-radius: 7px;
  width: 100%;
  height: 4px;
}
progress::-webkit-progress-bar {
  background-color: #e5e7e8;
  border-radius: 7px;
}
progress::-webkit-progress-value {
  background-color: #009b5b;
  border-radius: 7px;
}

.progress-status-title-circle {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: #009b5b;
  color: #ffffff;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.status-title {
  color: #009b5b;
}

button[data-next] p,
i {
  margin: 0;
  padding: 0;
  pointer-events: none; /* This will ensure the click event goes to the button */
}

button[data-previous] p,
i {
  margin: 0;
  padding: 0;
  pointer-events: none; /* This will ensure the click event goes to the button */
}

button[data-previous] {
  display: none;
}
