.block-form-appointment {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block-form-appointment .block-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}

.block-form-appointment .block-container .row-form-appointment {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.6rem 0rem;
}

.block-form-appointment .block-container .row-form-appointment .form-group {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.block-form-appointment .block-container .btn-form {
  width: 25%;
  max-width: 250px;
  height: 2.5rem;
  color: white;
  background: #87d0cb;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 1rem;
  cursor: pointer;
}

.block-form-appointment .block-container .btn-form:hover {
  background: #5bb2ac;
}

.block-form-appointment
  .block-container
  .row-form-appointment
  .form-group
  label {
  font-size: 18px;
  font-weight: 600;
  color: #42a29b;
}

.block-form-appointment
  .block-container
  .row-form-appointment
  .form-group
  input,
.block-form-appointment
  .block-container
  .row-form-appointment
  .form-group
  textarea {
  width: 90%;
  border: 1px solid #cecece;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
}

.block-form-appointment
  .block-container
  .row-form-appointment
  .form-group
  input {
  height: 30px;
}

.block-form-appointment
  .block-container
  .row-form-appointment
  .form-group
  textarea {
  height: auto;
}

@media (max-width: 1200px) {
  .block-form-appointment .block-container {
    width: 100%;
    padding: 0rem 1rem;
  }

  .block-form-appointment .block-container .row-form-appointment {
    flex-direction: column;
    align-items: start;
    padding: 0rem;
  }

  .block-form-appointment .block-container .row-form-appointment .form-group {
    width: 100%;
    margin-bottom: 1rem;
  }

  .block-form-appointment
    .block-container
    .row-form-appointment
    .form-group
    input,
  .block-form-appointment
    .block-container
    .row-form-appointment
    .form-group
    textarea {
    width: 95%;
  }

  .block-form-appointment .block-container .btn-form {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
  }
}
