@font-face {
  font-family: "Nasalization";
  src: url("/assets/fonts/Nasalization.otf") format("opentype");
}
@font-face {
  font-family: "Conthrax";
  src: url("/assets/fonts/Conthrax.otf") format("opentype");
}
@font-face {
  font-family: "Garet";
  src: url("/assets/fonts/Garet.otf") format("opentype");
}
@keyframes SlideLeft {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes SlideRight {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes Appear {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes Disappear {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
}
header a {
  transition-property: color;
  transition-duration: 250ms;
}
header a:hover {
  color: red;
}
header > img#imgResponsive {
  display: none;
  width: 48px;
  height: 48px;
  filter: invert(100%);
  margin-right: 16px;
}
header > a {
  color: white;
  text-decoration: none;
}
header > nav {
  margin-left: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header > nav > a {
  display: block;
  color: white;
  text-decoration: none;
  font-family: "Conthrax";
  font-size: 1.4em;
  margin-right: 22px;
}
header > img#imgGoToConnexion {
  display: block;
  width: 48px;
  height: 48px;
  margin-left: auto;
  filter: invert(100%);
}
header > a#linkToProfil {
  display: block;
  margin-left: auto;
}
header > a#linkToProfil > img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

div#container_menu_responsive {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 2;
  min-width: max-content;
  width: 30vw;
  max-width: 75vw;
  height: 100vh;
  background-color: black;
  color: white;
  transform: scaleX(0);
  transform-origin: left;
  padding: 16px;
}
div#container_menu_responsive > * {
  margin-bottom: 8px;
}
div#container_menu_responsive > img {
  display: block;
  width: 32px;
  height: 32px;
  filter: invert(100%);
  margin-left: auto;
}
div#container_menu_responsive > nav > a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  font-family: "Conthrax";
  font-size: 1.4em;
}

@media all and (max-width: 767px) {
  header > img#imgResponsive {
    display: block;
  }
  header > img#imgGoToConnexion {
    display: none;
  }
  header > nav {
    display: none;
  }
  header > a > img {
    display: none;
  }
}
footer {
  padding: 16px;
}
footer > p {
  text-align: center;
  color: white;
}
footer > nav {
  margin-top: 24px;
}
footer > nav > a {
  display: block;
  color: white;
  text-decoration: none;
  text-align: center;
  margin-bottom: 6px;
  transition-property: color;
  transition-duration: 250ms;
}
footer > nav > a:hover {
  color: red;
}

* {
  padding: 0px;
  margin: 0px;
}

body {
  background-image: url("/assets/img/illustrations/bg1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

div.infoMessage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  position: fixed;
  top: 0%;
  z-index: 2;
  box-sizing: border-box;
}
div.infoMessage > p {
  width: max-content;
  margin: 0px auto;
  color: white;
  margin: 14px;
  padding: 8px 14px;
  border-radius: 6px;
}

main {
  padding: 0px 16px;
}

select {
  appearance: base-select;
}

h1 {
  font-family: "Nasalization";
  font-size: 2.6em;
  color: white;
}

h2, h3 {
  font-family: "Conthrax";
}

p, button, input, a, label, textarea, td, th, select, option, pre {
  font-family: "Garet";
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  h1 {
    font-size: 2.3em;
  }
}
@media all and (max-width: 767px) {
  h1 {
    font-size: 2em;
  }
}
main > section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 30%;
  margin: 0px auto;
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  main > section {
    width: 60%;
  }
}
@media all and (max-width: 767px) {
  main > section {
    width: 100%;
  }
}
main > section > h2 {
  text-align: center;
  color: white;
  margin-bottom: 24px;
}
main > section > form {
  width: 100%;
}
main > section > form > label {
  display: block;
  color: white;
}
main > section > form > input:not(input[type=checkbox]), main > section > form textarea, main > section > form select {
  display: block;
  width: 100%;
  border: 2px solid white;
  padding: 4px 12px;
  outline: none;
  color: white;
  border-radius: 24px;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  transition-property: border-color;
  transition-duration: 250ms;
}
main > section > form > input:not(input[type=checkbox]):focus, main > section > form textarea:focus, main > section > form select:focus {
  border-color: blue;
}
main > section > form > input[type=checkbox] {
  width: 14px;
  height: 14px;
}
main > section > form > textarea {
  border-radius: 10px;
}
main > section > form > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  max-width: fit-content;
  border: 3px solid white;
  padding: 6px 12px;
  margin-top: 10px;
  margin-left: auto;
  transition-property: box-shadow;
  transition-duration: 250ms;
}
main > section > form > div > img {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  filter: invert(100%);
}
main > section > form > div > input[type=submit] {
  border: none;
  background-color: transparent;
  color: white;
}
main > section > form > div:hover {
  box-shadow: 3px 3px red;
}
main > section > form > a {
  color: blue;
  text-decoration: none;
}
main > section > form > a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=connexionStyle.css.map */
