@charset "UTF-8";

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #00447b;
}

h2 {
  font-size: 1.8rem;
}

.btn {
  background: #00447b !important;
  border: none !important;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #0361ae !important;
}

label {
  font-size: 1rem !important;
  display: flex;
  align-items: center;
  color: #00447b;
}

.message-tip {
  color: #606060;
  margin-bottom: 10px !important;
  font-size: 0.9rem !important;
  font-style: italic !important;
}

.box {
  box-shadow: 0px 3px 19px 8px rgba(46, 46, 46, 0.1);
  -webkit-box-shadow: 0px 3px 19px 8px rgba(46, 46, 46, 0.1);
  -moz-box-shadow: 0px 3px 19px 8px rgba(46, 46, 46, 0.1);
}

.alert {
  font-size: 0.8rem !important;
}

.link-connexion {
  color: #00447b !important;
  font-size: 0.8rem !important;
  text-decoration: none;
}

.link-connexion:hover {
  text-decoration: underline !important;
}

.custom-tooltip {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.custom-tooltip span {
  width: 150px;
  background: #00447b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  opacity: 0;
  transition: left 0.4s, opacity 0.4s;
  color: white;
  border-radius: 3px;
  pointer-events: none;
}

.custom-tooltip span::before {
  content: "";
  width: 10px;
  height: 10px;
  top: 0;
  background: #00447b;
  display: flex;
  align-items: center;
  font-size: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  left: -5px;
}

.custom-tooltip:hover span {
  left: 30px;
  opacity: 1;
}

input {
  box-shadow: none !important;
  outline: none !important;
}

.input-requirements {
  font-size: 0.8rem;
  font-style: italic;
  text-align: left;
  list-style: disc;
  color: #969696;
}

.input-requirements li.valid {
  color: #2ecc71;
}

.input-requirements li.valid:after {
  display: inline-block;
  padding-left: 10px;
  content: "\2713";
}

.input-requirements li.invalid {
  color: #e74c3c;
}

.input-requirements li.invalid:after {
  display: inline-block;
  padding-left: 10px;
  content: "\10102";
}

/* Custom ------------------ */

input:not([type=submit]):valid {
  border-color: #2ecc71;
}

/* Hide and show related .input-requirements when interacting with input */

input:not([type=submit]) + .input-requirements {
  overflow: hidden;
  max-height: 0;
  transition: max-height 1s ease-out;
}

input:not([type=submit]):hover + .input-requirements,
input:not([type=submit]):focus + .input-requirements,
input:not([type=submit]):active + .input-requirements {
  max-height: 1000px;
  /* any large number (bigger then the .input-requirements list) */
  transition: max-height 1s ease-in;
}

.slide-in-right {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2021-12-11 21:4:52
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */

@-webkit-keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

