/* === GlobalInfo === */
#globalInfo {
    position: fixed;
    display: block;
    margin-left: 30%;
    margin-right: 30%;
    width: 40%;
    top: 80px;
    z-index: 9999;
}

.alert.alert-info {
    padding: 10px 20px;
    font-size: 0.9em;
    color: #255a87;
    background-color: #255a8736;
    border-color: #255a8736;
    border-radius: inherit;
}

/* === SignUp === */
#validation_title {
    font-size: 16px;
    font-weight: bold;
    color: orangered;
}
#validation_text {
    font-size: 14px;
    color: black;
    padding-bottom: 25px;
}

/* === Form === */
select, input {
    width: 100%;
    height: 35px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 35px;
    font-size: 20px;
    border-color: white;
    border-radius: 5px;
    margin-bottom: 20px;
}
textarea {
    width: 100%;
    height: 300px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 35px;
    font-size: 20px;
    border-color: white;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* checkbox */
.checkbox_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.checkbox_container:hover input ~ .checkmark {
  background-color: #ccc;
}
.checkbox_container input:checked ~ .checkmark {
  background-color: #2196F3;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox_container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox_container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}