/* Desktop */
/* Petit Desktop */
/* Tablet */
/* mobile */
form,
fieldset,
.fieldset {
  border: none;
  margin: 0;
}
form > * + *,
fieldset > * + *,
.fieldset > * + * {
  margin-top: 1rem;
}

input[type=file],
input[type=date],
input[type=email],
input[type=tel],
input[type=text],
input[type=number],
input[type=password],
textarea,
select {
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem;
  border: 1px solid #ededed;
  border-radius: 2.5px;
}

input::-webkit-input-placeholder {
  opacity: 0.75;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

input::-moz-placeholder {
  opacity: 0.75;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

input:-ms-input-placeholder {
  opacity: 0.75;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

input::-ms-input-placeholder {
  opacity: 0.75;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

input::placeholder {
  opacity: 0.75;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.form-title {
  color: #00378a;
}

.wrapper-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
@media (max-width: 768px) {
  .wrapper-form {
    padding: 2rem;
  }
}
.wrapper-form form {
  margin-top: 4rem;
  margin-bottom: 4rem;
  -webkit-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.2);
  -ms-flex-preferred-size: 28rem;
      flex-basis: 28rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  z-index: 3;
  position: relative;
  text-align: center;
  padding: 1rem;
  background-color: white;
}