@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&family=Work+Sans:wght@100&display=swap");
:root {
  --border-color: #BFBEBE;
  --bg-main-color: #EEF5F9;
  --bg-main-color-dark: #E1E2E1;
  --bg-header: #F3F3F3;
  --bg-header-modal: #1e88e5;
  --s-color: #60a3bc;
  --s-light-color: #92d4ef;
  --s-dark-color: #2c748c;
  --p-color: #1e88e5;
  --p-light-color: #6ab7ff;
  --p-dark-color: #005cb2;
  --warn-color: #b90909;
  --warn-dark-color: #810000;
  --text-p: #ffffff;
  --text-index: #1e88e5;
  --back-card: #FFFFFF;
  --color-title: #33475b;
  --header-titre: #1e88e5;
  --header-sous-titre: #000;
}

/* Icon Color */
html {
  font-size: 100%;
  height: 100%;
  font-family: "Open Sans", sans-serif;
}
html body {
  font-size: 0.8em;
  margin: 0px;
  height: 100%;
  overflow: hidden;
  background: var(--bg-main-color);
}
html body > #info-compte {
  position: absolute;
  top: 20px;
  left: 20px;
}
html body > #info-compte > h2 {
  margin: 0;
  padding: 0;
  color: var(--header-titre);
  font-weight: 300;
  font-size: 1.6em;
}
html body > #info-compte > h2 > div {
  font-size: 0.6em;
  color: var(--header-sous-titre);
}
html body > #login_form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  width: 400px;
  height: 500px;
  background-color: white;
  z-index: 103;
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid #BFBEBE;
  box-shadow: 2.8px 2.8px 2.2px rgba(0, 0, 0, 0.02), 6.7px 6.7px 5.3px rgba(0, 0, 0, 0.028), 12.5px 12.5px 10px rgba(0, 0, 0, 0.035), 22.3px 22.3px 17.9px rgba(0, 0, 0, 0.042), 41.8px 41.8px 33.4px rgba(0, 0, 0, 0.05), 100px 100px 80px rgba(0, 0, 0, 0.07);
}
html body > #login_form > #logo_login {
  text-align: center;
  margin-bottom: 10px;
  color: var(--text-index);
}
html body > #login_form > #logo_login > img {
  height: 55px;
}
html body > #login_form > #titre {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2em;
}
html body > #login_form > #fLogin {
  margin: 20px;
  margin-top: 50px;
}
html body > #login_form > #fLogin > #bt {
  text-align: center;
}
html body > #login_form > #fLogin > #bt > button {
  border: none;
  outline: 0;
  padding: 20px;
  cursor: pointer;
  text-transform: uppercase;
  background-color: var(--p-dark-color);
  color: white;
}
html body > #login_form > #fLogin > #bt > button:hover {
  background-color: var(--p-color);
}
html body > #login_form > #fLogin > #mdp_oubli {
  margin-top: 30px;
  text-align: center;
  font-size: 0.8em;
}
html body .champs {
  position: relative;
  height: 50px;
  margin-bottom: 50px;
}
html body .champs > .placeholder {
  left: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-size: 0.9em;
  color: var(--p-dark-color);
  transition: top 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}
html body .champs > .placeholder.focus {
  top: -10px;
}
html body .champs > input {
  width: 100%;
  height: 100%;
  border: none;
  padding-left: 15px;
  background-color: transparent;
  box-sizing: border-box;
  position: absolute;
  border-bottom: 1px solid #BFBEBE;
  font-size: 1.3em;
  outline: 0;
  color: #000000;
}