.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.reserve-title {
  color: rgb(57, 81, 155);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 40px;
}

.form-input {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  width: 700px;
  flex-wrap: wrap;
}

.form-name {
  font-size: 20px;
  border-style: none;
  border-radius: 10px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  padding: 15px;
  margin-bottom: 15px;
  width: 200px;
  flex: 1;
  margin-right: 15px;
}

.form-name:focus {
  outline-color: rgb(57, 81, 155);
}

.form-email {
  font-size: 20px;
  border-style: none;
  border-radius: 10px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  padding: 15px;
  margin-bottom: 15px;
  width: 200px;
  flex: 1;
}

.form-email:focus {
  outline-color: rgb(57, 81, 155);
}

.form-web {
  font-size: 20px;
  border-style: none;
  border-radius: 10px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  flex: 100%;
  padding: 15px;
  margin-bottom: 15px;
  width: 100%;
}

.form-web:focus {
  outline-color: rgb(57, 81, 155);
}

.form-date {
  font-size: 20px;
  border-style: none;
  border-radius: 10px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  flex: 100%;
  padding: 15px;
  margin-bottom: 15px;
  width: 100%;
  color: rgb(117, 115, 115);
}

.form-date:focus {
  outline-color: rgb(57, 81, 155);
}

.form-message {
  font-size: 20px;
  border-style: none;
  border-radius: 10px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  flex: 1;
  padding: 15px;
  margin-bottom: 15px;
  width: 100%;
  text-size-adjust: 100%;
  resize: vertical;
}

.form-message:focus {
  outline-color: rgb(57, 81, 155);
}

.send-message {
  background-color: rgb(57, 81, 155);
  padding: 20px 35px;
  font-size: 17px;
  color: white;
  margin-top: 20px;
  border-radius: 35px;
  cursor: pointer;
  flex: 100%;
}

.send-message:hover {
  background-color: rgb(82, 111, 199);
  padding: 20px 35px;
  font-size: 17px;
  color: white;
  margin-top: 20px;
  border-radius: 35px;
  cursor: pointer;
}


@media (min-width: 500px) and (max-width: 750px) {

  .form-input {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    width: 450px;
    flex-wrap: wrap;
  }

  .reserve-title {
    color: rgb(57, 81, 155);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 60px;
  }

  .form-name {
    font-size: 20px;
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-bottom: 15px;
    width: 200px;
    flex: 1;
    margin-right: 0px;
  }
}

@media (min-width: 300px) and (max-width: 500px) {

  .main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 15%;
  }

  .reserve-title {
    color: rgb(57, 81, 155);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 60px;
  }

  .form-input {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    width: 270px;
    flex-wrap: wrap;
  }

  .form-name {
    font-size: 20px;
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-bottom: 15px;
    width: 200px;
    flex: 1;
    margin-right: 0px;
  }

  .form-name:focus {
    outline-color: rgb(57, 81, 155);
  }


  .form-email {
    font-size: 20px;
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-bottom: 15px;
    width: 200px;
    flex: 1;
  }

  .form-email:focus {
    outline-color: rgb(57, 81, 155);
  }

  .form-web {
    font-size: 20px;
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
    flex: 100%;
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
  }

  .form-web:focus {
    outline-color: rgb(57, 81, 155);
  }

  .form-date {
    font-size: 20px;
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
    flex: 100%;
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
    color: rgb(117, 115, 115);
  }

  .form-date:focus {
    outline-color: rgb(57, 81, 155);
  }

  .form-message {
    font-size: 20px;
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
    flex: 1;
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
    text-size-adjust: 100%;
    resize: vertical;
  }

  .form-message:focus {
    outline-color: rgb(57, 81, 155);
  }

  .send-message {
    background-color: rgb(57, 81, 155);
    padding: 20px 35px;
    font-size: 17px;
    color: white;
    margin-top: 20px;
    border-radius: 35px;
    cursor: pointer;
    flex: 100%;
  }

  .send-message:hover {
    background-color: rgb(82, 111, 199);
    padding: 20px 35px;
    font-size: 17px;
    color: white;
    margin-top: 20px;
    border-radius: 35px;
    cursor: pointer;
  }

}