* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin-top: -35px;
  background-color: #dae0ec;
  height: 100vh;
}
#centerForm {
  margin-bottom: 200px;
  position: relative;
  background-color: white;
  border-radius: 10px;
  top: 16rem;
  /* 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;
}
.information-list-contact li a{
color: black !important;
}

.close-modal {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  font-size: 4rem;
  color: grey;
  cursor: pointer;
  border: none;
  background: none;
  padding-top: 10px;
}

.hiddenModal {
  display: none;
}

.success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  min-width: 400px;
  background-color: white;
  padding: 4rem;
  border-radius: 2px;
  box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 135%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 5;
}
.error{
  color: red;
  font-weight: 600;
}
.errorFormSubmit{
  color: red;
  font-weight: 600;
}