h1 {
  padding-bottom: 50px;
}

.input-field {
  position: relative;
  padding: 10px 20px;
  margin: 20px 0;
  /* border: 1px solid #abafc1; */
  border-radius: 4px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0px 0px 2px #abafc1;
}

label {
  color: #dee0e9;
  font-size: 12px;
  font-weight: 600;
}

input {
  padding-top: 2px;
  font-size: 16px;
  color: white;
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
}

.error {
  font-size: 12px;
  color: #f03a17;
  height: 0;
  opacity: 0;
}

.error.show {
  padding-left: 20px;
  position: relative;
  bottom: 12px;
  transition: all 0.2s ease-in-out;
  height: max-content;
  opacity: 1;
}

button {
  cursor: pointer;
  color: white;
  font-weight: 500;
  border-radius: 4px;
  background-color: rgb(0, 112, 243);
  outline: none;
  border: none;
  padding: 15px 25px;
  box-shadow: 0 4px 14px 0 rgb(0 112 243 / 39%);
}

button:hover {
  transition: all 0.2s ease-in-out;
  background: rgba(0, 112, 243, 0.9);
  box-shadow: 0 6px 20px rgb(0 112 243 / 23%);
}

.chips {
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  margin-bottom: 30px;
}

.chip {
  /* position: relative; */
  color: black;
  width: max-content;
  background-color: #dbf7e2;
  border-radius: 40px;
  padding: 5px 20px;
  font-size: 12px;
}

.chip::before {
  content: attr(data-content);
  margin-right: 5px;
  color: #056c1b;
}
