
#appointment {
    display: block;
    height: auto;
    text-align: center;
}

#title {
    font-size: 39px;
    font-weight: 600;
    margin-bottom: 20px;
}

#info {
    font-size: 20px;
    margin-bottom: 20px;
}

.inputWrapper {
    margin: 0 0 14px 0;
}

.inputHeader {
    font-size: 20px;
}

#appointment input {
    width: 420px;
    height: 30px;
    background: transparent;
    border: 2px solid;
    font-size: 20px;
}

#appointment button {
  background: #FF4742;
  border: 1px solid #FF4742;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: "Segoe UI", "Liberation Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
  min-height: 40px;
  outline: 0;
  padding: 12px 14px;
  text-align: center;
  text-rendering: geometricprecision;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}

#appointment button:hover,
.button-24:active {
  background-color: initial;
  background-position: 0 0;
  color: #de1914;
}

#appointment button:active {
  opacity: .5;
}

#appointment span {
  font-family: "Segoe UI", "Liberation Sans", sans-serif;
  font-weight: 500;
  color: #000;
}

.errorMsg {
    font-family: "Segoe UI", "Liberation Sans", sans-serif;
    font-weight: 500;
    color: rgb(255, 28, 28);
    margin-bottom: 0;
}

#successfulRequest {
    margin-bottom: 0;
    font-family: "Segoe UI", "Liberation Sans", sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #000;
}

@media screen and (width <= 900px) {
    #appointment {
        display: block;
        height: auto;
    }

    #appointment input {
        width: 90%;
    }
}