.form {
  /* background-color: #9db5c8; */
  border-radius: 20px;
  box-sizing: border-box;
  height: 650px;
  padding: 10px;
  width: 100%;
}

.input-container {
  height: 40px;
  position: relative;
  width: 100%;
  padding: 0px;
}
.ic1 {
  margin-top: 5px;
}
.input {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  border: 0;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 18px;
  font-family: Rancho;
  height: 100%;
  outline: 0;
  padding: 4px 20px;
  width: 100%;
}
.submit {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  font-family: Advent Pro;
  border: 0;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  height: 50px;
  margin-top: 20px;
  outline: 0;
  text-align: center;
  width: 100%;
}
.select-box {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  border: 0;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 18px;
  font-family: Rancho;
  height: 100%;
  outline: 0;
  padding: 4px 20px;
  width: 100%;
}
.submit:active {
  background-color: rgba(0, 0, 0, 0.5);
}

/* style option select */
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Rancho;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: rgba(0, 0, 0, 0.5);
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #ffffff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #ffffff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: #0d4026a6;
}
