* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin-top: -35px;
  background-color: #dae0ec;
  height: 100vh;
}
#centerForm {
  margin-bottom: 100px;
  position: relative;
  background-color: white;
  border-radius: 10px;
  top: 8rem;
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  width: 400px;
  box-shadow: 0rem 1rem 1rem rgba(0, 0, 0, 0.1);
}

label {
  font-weight: 700;
  font-size: 10px;
  padding-bottom: 0.5rem;
}

.customButton {
  color: white;
  margin: auto;
  width: 50%;
  background-color: rgb(0, 105, 255);
  border: none;
  border-radius: 40px;
  padding: 1rem;
  font-size: 1.5rem;
}
.customButton:hover {
  background-color: rgb(0, 87, 208);
}

.customButton:active {
  background-color: rgb(0, 65, 157);
}

.form-group.required .control-label:after {
  content: "*";
  color: red;
}

.form-group label {
  position: relative;
  line-height: normal;
  font-size: 14px;
  color: black;
  transition: none;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  border-radius: 10px;
  border: 1px solid black;
}

.form-group.focused label {
  line-height: normal;
  font-size: 14px;
  color: black;
  transition: none;
  top: 10px;
}

@media (max-width: 576px) {
  .header-info .logo img {
    transform: scale(1.5);
    position: relative;
    top: 12px;
    margin-left: 30px;
  }
  .feather-menu {
    position: relative;
    top: 15px;
    transform: scale(1.5);
  }
}
