#formulario {
  max-width: 700px;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 30px auto;
  width: 100%;
  flex-direction: column;
}

label {
  font-size: 14px;
  color: #000b75;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}

input,
.select,
textarea {
  border-radius: 0px 32px 0px 32px;
  padding: 13px 16px;
  border: 1px solid #c1c7cd;
  padding: 13px 16px;
  font-size: 16px;
  background: #fff;
}

select,
select:focus {
  border: 0px;
  outline: none;
}

.label-file {
  width: 100%;
  margin: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #697077;
  padding: 13px 16px;
}

.bg-gradient-gray {
  background: rgb(219, 222, 237);
  background: -moz-linear-gradient(
    0deg,
    rgba(219, 222, 237, 1) 0%,
    rgba(219, 222, 237, 0.95) 25%,
    rgba(219, 222, 237, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(219, 222, 237, 1) 0%,
    rgba(219, 222, 237, 0.95) 25%,
    rgba(219, 222, 237, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(219, 222, 237, 1) 0%,
    rgba(219, 222, 237, 0.95) 25%,
    rgba(219, 222, 237, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbdeed", endColorstr="#dbdeed", GradientType=1);
}
