html, body {
  height: 100%;
  font-family: 'Open Sans', sans-serif;
}

body {
  background-image: url(https://unsplash.it/1920/1080?random);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  padding-top: 75px;
  box-sizing: border-box;
}

form {
  background-color: #fff;
  border-radius: 8px;
  padding: 55px;
  box-sizing: border-box;
  max-width: 500px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

span {
  font-style: italic;
  font-size: 0.75rem;
  color: #808080;
  align-self: flex-end;
  margin-top: 2px;
}

input[type="text"] {
  font-size: 22px;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  padding: 8px 10px;
  color: #666;
  box-sizing: border-box;
}

.multi-value--wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.multi-value--wrapper input[type="text"] {
  width: calc(100% - 40px);
}

.multi-value--wrapper input[type="text"] + input[type="text"],
.multi-value--wrapper input[type="text"] + input[type="text"] + svg {
  margin-top: 5px;
}

.multi-value--wrapper svg {
  width: 32px;
  height: 32px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 8px;
  align-self: center;
}

input[type="submit"] {
  margin-top: 25px;
  margin-bottom: 10px;
  width: 115px;
  border-radius: 5px;
  border: 0;
  padding: 15px 0;
  background: linear-gradient(0deg, #358b11, #47c15c);
  color: #fff;
  align-self: center;
  cursor: pointer;;
}

.last-build {
  position: absolute;
  bottom: 5px;
  right: 10px;
}
