.button {
  padding: 1rem;
  margin: 1rem auto;
  z-index: 2;
}

.confirm {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
}

.confirm > p > .bold {
  font-weight: 600;
}

.confirm-title {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

.container {
  background: #fff;
  padding: 2rem 6rem;
  width: 30rem !important;
  max-width: initial !important;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.20);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.20);
  box-shadow: 0 0 10px rgba(0,0,0,0.20);
}

.title h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

hr.hr {
  color: #333;
  background: #333;
  width: 20rem;
  height: 0.2rem;
  border: none;
  margin-bottom: 2rem;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 2rem auto;
}

.form-inputs > label {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}

.form-inputs > input, textarea {
  padding: 0.5rem 0;
  font-size: 1rem;
  outline: none;
  border: none;
  border-bottom: 2px solid #333;
  padding-bottom: 1.5rem;
  transition: border-bottom .4s;
  width: 35rem;
  color: #333;
  font-weight: 500;
}

textarea {
  resize: vertical;
  min-height: 4rem;
  max-height: 40rem;
}

input:focus,
textarea:focus {
  border-bottom: 2px solid #cd7c3f;
}

.button {
  z-index: 1;
}

@media only screen and (max-width: 768px) {

  .title h1 {
    font-size: 1.7rem;
  }

  .container {
    padding: 2rem 4rem;
    width: 80% !important;
    max-width: 80% !important;
  }

  .form-inputs > input, textarea {
    width: 50rem;
    font-size: 1.4rem;
  }

  .form-inputs > label {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 500px) {
  .container {
    padding: 2rem 4rem;
    width: 70% !important;
    max-width: 70% !important;
  }

  .form-inputs {
    margin: 1rem auto;
  }

  .button {
    width: 13rem;
    height: 4rem;
  }

  .form-inputs > input, textarea {
    width: 25rem;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 425px) {

  .container {
    padding: 2rem 4rem;
    width: 80% !important;
    max-width: 80% !important;
  }

  .title h1 {
    font-size: 1.8rem;
  }

  .form-inputs > label {
    font-size: 1.3rem;
  }

  .form-inputs > input, textarea {
    border-bottom: 1px solid #333;
  }

  .title {
    max-width: 95%;
  }

  hr.hr {
    width: 15rem;
    height: 0.1rem;
  }

  .container {
    padding: 0.5rem 2.5rem;
  }
}