@font-face {
  font-family: "Poppins";

  src: url("../font/Poppins/Poppins-Bold.ttf") format("truetype");

  font-weight: normal;

  font-style: normal;
}

@font-face {
  font-family: "Avenir";

  src: url("../font/Avenir.ttc") format("truetype");

  font-weight: normal;

  font-style: normal;
}

:root {
  --bleu: #002798;
  --blanc: #f1f8ff;
  --orange: #ff7f00;
}

body {
  background-color: var(--blanc);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  display: flex;
}

header img {
  margin-left: 20px;
  width: 80px;
  height: 80px;
}
span {
  color: #ff7f00;
}
h1 {
  color: var(--bleu);
}
main {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

form {
  justify-content: center;
  align-items: center;

  color: var(--bleu);
  display: flex;
  flex-direction: column;
  border: 5px solid var(--bleu);
  padding: 20px;
  border-radius: 20px;
  height: 100%;
}
button {
  margin-top: 10px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  color: var(--blanc);
  background-color: var(--orange);
  border: none;
  padding: 10px;
  width: 80px;
}
input {
  background-color: var(--blanc);
  border: var(--bleu) 2px solid;
  border-radius: 0px 10px 10px 10px;
  color: var(--bleu);
  width: 100%;
}

#message {
  border-radius: 0px 10px 10px 10px;
  color: var(--bleu);
  border: 2px solid var(--bleu);
  width: 100%;
  height: 50px;
  background-color: var(--blanc);
  resize: none;
  height: 150px;
}

.info {
  width: 100%;
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 10px;
  color: #f1f8ff;
  background-color: #002798;
  width: fit-content;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px 10px 0px 0px;
}

.popup {
  font-family: "Poppins", sans-serif;
  color: var(--bleu);
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blanc);
  padding: 20px;
  border: 2px solid var(--bleu);
  border-radius: 10px;
  width: 300px;
  height: 100px;
  z-index: 999;
}
.hidden {
  display: none;
}
