.containerSignUp {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}
.formSignUp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 62vw;
  width: 62vw;
  max-height: 80vh;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: auto;
}
.titleSignUp {
  font-weight: 700;
  margin-top: 0;
  color: #1064a1;
  text-align: center;
}
.flexCenter {
  display: flex;
  align-items: center;
}

.img-logo {
  text-align: center;
  padding: 15px 0;
}
.img-logo img {
  width: 25rem;
}
.titleInput {
  position: absolute;
  right: 30px;
  color: gray;
}
.noteContent {
  background: #e1effa;
  border: 1px solid #a0c9f3;
  padding: 15px;
  border-radius: 10px;
}
.spanContent {
  margin-top: 10px;
  font-weight: bold;
  text-decoration: underline;
}

.flex-start {
  display: flex;
  align-items: flex-start;
}

.mainTitle {
  margin-top: 0;
  color: #1064a1;
  font-weight: bold;
  text-align: center;
}

.listStyleLeft {
  margin-bottom: 20px;
  font-weight: bold;
  list-style-type: none;
}
.itemList {
  margin-top: 5px;
  font-size: 12px;
}
.itemContentList {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

@media (max-width: 1200px) {
  .formSignUp {
    width: 80%;
    max-width: 80%;
  }
  .titleSignUp {
    font-size: 20px;
  }
  .buttonSignUp {
    font-size: 15px !important;
  }
  .well-lg {
    padding: 0 !important;
  }
  .img-logo img {
    width: 20rem;
  }
}

@media (max-width: 768px) {
  .formSignUp {
    width: 100%;
    max-width: 100%;
  }
  .titleSignUp {
    font-size: 20px;
  }
  .buttonSignUp {
    font-size: 15px !important;
  }
  .well-lg {
    padding: 0 !important;
  }
  .img-logo img {
    width: 17rem;
  }
}
