#main-content {
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .background-img {
    display: none;
  }
}
  
.blue-div {
  background-color: #102542;
  margin-bottom: 0px;
}
  
.blue-div-text {
  color: #F87060;
  margin-bottom: 0px;
}
  
#link-contact {
  text-decoration: inherit;
  color: white;
}

.btn-inscription {
  border-style:solid;
  border-width: 1px;
  border-color: #ffffff;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 2em;
  padding-right: 2em;
  margin: 1em;
  cursor: pointer;
  color: #ffffff;
}
  
.btn-inscription:hover {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 2em;
  padding-right: 2em;
  margin: 1em;
  border-style:solid;
  border-width: 1px;
  background: #ffffff;
  color: #F87060;
}
  
.form-inscription {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
  
#page-content {
  flex: 1 0 auto;
}

.form-content {
  padding: 2%;
}

.form-control, .form-control:focus {
  border-color: #102542;
  border-width: 1px;
  box-shadow: -2px 2px 5px #9fafc1;
  max-width: 250px;
}

.icon-eye, .icon-eye:focus, .icon-eye:hover {
  border-left: none;
  border-color:#102542;
  border-width: 1px;
  box-shadow: 0px 2px 5px #9fafc1;
  margin: none;
  display: flex;
  color: #F87060;
}

.center-vertical {
  margin-top: auto;
  margin-bottom: auto;
}

.border-right-input, .border-right-input:focus {
  border-right-style: none;
  border-right-color: #ffffff;
  border-color:#102542;
  border-width: 1px;
  box-shadow: -2px 2px 5px #9fafc1;
}

.hr {
  /* centre verticalement les enfants entre eux */
  align-items: center;
  /* active flexbox */
  display: flex;
  /* garde le texte centré s’il passe sur plusieurs lignes ou si flexbox n’est pas supporté */
  text-align: center;
  color: rgba(7, 80, 117, 0.6);
}

.hr::before,
.hr::after {
  /* la couleur est volontairement absente ; ainsi elle sera celle du texte */
  border-top: .0625em solid;
  /* nécessaire pour afficher les pseudo-éléments */
  content: "";
  /* partage le reste de la largeur disponible */
  flex: 1;
  /* espace les traits du texte */
  margin: 0 .5em;
}

.selected-label input:checked ~ .card {
  opacity: 1;
}

.form-check-input {
  color: #F87060;
}

.custom-checkbox:hover {
  cursor: pointer;
}

.custom-checkbox input[type="checkbox"], .custom-checkbox .checked {
  display: none;
}

#check:checked ~ .checked {
  display: inline-block;
}

#check:checked ~ .unchecked {
  display: none;
}

.tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
}

.tooltip:hover {
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 350px;
  background-color: #F87060;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 1rem;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltiptext a {
  color: #fff;
  text-decoration: underline;
}