body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  width: 100%;
}

@media (max-width: 991px) {
  body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: -webkit-gradient(linear, left top, right top, from(#8be7e3), to(#fec8da));
    background-image: linear-gradient(90deg, #8be7e3, #fec8da);
  }
}

@media (min-width: 991px) {
  body {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#8fe8e4), to(#fecddd));
    background-image: linear-gradient(180deg, #8fe8e4, #fecddd);
  }
}

.tittle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tittle .tittle-text {
  margin-left: 10px;
  font-weight: 700;
  font-size: 50px;
}

.content {
  width: 800px;
  max-width: 90%;
  background-color: white;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  margin: auto;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #999;
  padding: 30px 0px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.submit {
  text-align: center;
  text-decoration: none;
  width: 50%;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 10px;
  border-radius: 10px;
  border: 0;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-image: -webkit-gradient(linear, left top, right top, from(#e6dee9), to(#bdc2e8));
  background-image: linear-gradient(90deg, #e6dee9, #bdc2e8);
}

.submit span {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.submit:hover {
  -webkit-filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
}

@media (max-width: 600px) {
  .submit {
    width: 75%;
  }
}
/*# sourceMappingURL=style.min.css.map */