#clientEventTotalContainer {
  width: 55%;
  max-width: 700px;
  margin: 0 auto;
  background-color: white;

  box-shadow: 0px 0px 35px 14px rgb(0 0 0 / 5%);
  padding: 40px;
  color: #333333;

  box-sizing: border-box;
}
#clientEventTitle {
  font-size: 20px;
  margin-bottom: 20px;
}
#clientEventForm {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.fieldContainer {
  height: auto;
  padding: 10px 0;
  width: 100%;
}
.fieldTitle {
  width: fit-content;
  font-size: 16px;
}
.fieldInput {
  padding: 0 10px;

  height: 42px;
  cursor: pointer;
  border-radius: 3px;
  margin-top: 10px;
  background-color: #f0f0f0;
  width: calc(100% - 20px);
}
#createEventButton {
  width: 170px;
  position: relative;
  height: 35px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  text-transform: uppercase;
  background: #077bed;
  border-radius: 4px;
  color: white;
  font-weight: 700;
}

.hasDatepicker {
  width: calc(50% - 10px);
  float: left;
}
.fieldInput.hasDatepicker {
  width: 100%;
  margin-right: 0;
  font-size: 14px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #clientEventTotalContainer {
    margin-bottom: 0px;
  }
}
