.repeatable-field {
  position: relative;
}

.repeatable-field__rows {
  list-style: none;
  padding: 0;
  margin: 0;
}

.repeatable-field__row {
  display: flex;
  align-items: baseline;
}

.repeatable-field__row input[type="email"] {
  flex: 1;
}

.repeatable-field__remove-button {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
border-radius: 50%;
margin-left: 15px;
}

.repeatable-field__add-button {
border-radius: 20px;
  background-color: rgb(118, 80, 224);
  font-size: 14px;
  position: relative;
  overflow: hidden;
  color: rgb(255, 255, 255);
  border: solid 2px transparent;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
}