/**************************************/
/* bodet.org, 1999-2026               */
/* version 3.0                        */
/* 2026-02-09                         */
/**************************************/

/*------------------------------------*/
/* Colors */
/*------------------------------------*/
:root {
  --primary: #4691f7;
  --link: #2086bf;
  --black: #000;
  --dark: #222;
  --white: #fff;
  --gray: #999;
  --dark-gray: #777;
  --xlight-blue: #ebf6fe;
}

/*------------------------------------*/
/* html & body */
/*------------------------------------*/
html,
body,
*, *::before, *::after {
  box-sizing: border-box;
}
html { 
  height: 100%;
  background-color: var(--white);
}
.bg-bodet {
  background-image: url(https://cdn.bodet.org/img/bg_error_bodet.png);
}
.bg-bws {
  background-image: url(https://cdn.bodet.org/img/bg_error_bws.png);
}
.bg-globotech {
  background-image: url(https://cdn.bodet.org/img/bg_error_globotech.png);
}
.bg-synapse {
  background-image: url(https://cdn.bodet.org/img/bg_error_synapse.png);
}
.bg-bodet-ext-echappetoisitupeux {
  background-image: url(https://cdn.bodet.org/img/bg_error_bodet-ext_echappetoisitupeux.png);
}
.bg-bodet,
.bg-bws,
.bg-globotech,
.bg-synapse,
.bg-bodet-ext-echappetoisitupeux {
  background-repeat: no-repeat;
}
body {
  color: var(--dark);
  position: relative;
  min-height: 100%;
  margin: 0 0 0 60%;
  padding: 0 50px;
  background: var(--white);
  font-family: 'Gilroy', sans-serif;
  font-size: 0.875rem;
  line-height: 1.1;
  font-weight: 400;
  font-style: normal;
}

/*------------------------------------*/
/* Links */
/*------------------------------------*/
a {
  text-decoration: none;
  color: var(--link);
}
a:visited {
  color: var(--link);
}

/*------------------------------------*/
/* Title */
/*------------------------------------*/
h1, h2, h3 {
  color: var(--primary);
}
h1 {
  font: 700 2.25rem/1.1 'Gilroy', sans-serif;
}
h2 {
  font: 700 1.875rem/1.1 'Gilroy', sans-serif;
}
h3 {
  font: 400 1.5rem/1.1 'Gilroy', sans-serif;
}
h4 {
  font: 400 1.125rem/1.1 'Gilroy', sans-serif;
}
h5 {
  font: 400 0.875rem/1.1 'Gilroy', sans-serif;
}
h6 {
  font: 400 0.75rem/1.1 'Gilroy', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: .625rem 0;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small {
  font-weight: 400;
  font-size: .7em;
  line-height: 1;
  color: var(--dark-gray);
}

/*------------------------------------*/
/* Text */
/*------------------------------------*/
.text-light {
  font-weight: 300;
  font-style: normal;
}
.text-normal {
  font-weight: 400;
  font-style: normal;
}
.text-bold {
  font-style: normal;
  font-weight: 700;
}
.text-italic {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capital {
  text-transform: capitalize;
}
.text-dashed {
  border: 0;
  border-bottom: 1px var(--dark-gray) dashed;
  display: inline;
}
.indent-paragraph {
  text-indent: 2.5rem;
}
.text-secondary {
  font-size: 0.75rem;
}
.text-accent,
.text-enlarged {
  font-size: 1.1rem;
}
.text-default {
  font-size: 0.875rem;
}
.text-small {
  font-size: 0.625rem;
}
.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*------------------------------------*/
/* Align */
/*------------------------------------*/
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
.align-justify {
  text-align: justify;
}
.v-align-top {
  vertical-align: top;
}
.v-align-bottom {
  vertical-align: bottom;
}
.v-align-baseline {
  vertical-align: baseline;
}
.v-align-middle {
  vertical-align: middle;
}
.v-align-sub {
  vertical-align: sub;
}
.v-align-super {
  vertical-align: super;
}
.v-align-top-text {
  vertical-align: text-top;
}
.v-align-bottom-text {
  vertical-align: text-bottom;
}

/*------------------------------------*/
/* Padding & Margin */
/*------------------------------------*/
.mr-10 {
  margin-right: 10px;
}

/*------------------------------------*/
/* Header */
/*------------------------------------*/
header {
  padding-top: 70px;
  display: block;
}

/*------------------------------------*/
/* Content */
/*------------------------------------*/

#content {
  padding-top: 50px;
  font: 300 1.125rem/1.1 "Gilroy", sans-serif;
}
#form {
  padding-top: 20px;
}
#lang {
  text-align: center;
  padding-top: 50px;
}
.flag {
  opacity: 0.6;
}
.flag:hover {
  opacity: 1;
}

/*------------------------------------*/
/* Footer */
/*------------------------------------*/
#footer {
  position: fixed;
  bottom: 0;
  color: var(--gray);
  font: 500 0.75rem/1.1 "Gilroy", sans-serif;
}
.logo-footer {
  vertical-align: middle;
  width: 112px;
}

/*------------------------------------*/
/* Form */
/*------------------------------------*/
.submit {
  background-color: var(--white);
  border: .0625rem solid var(--primary);
  border-radius: .25rem;
  color: var(--primary);
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1rem;
  margin: .375rem .5rem .375rem 0;
  min-width: 5.5rem;
  padding: .625rem 0;
  position: relative;
  text-align: center;
}
.submit:hover {
  background-color: var(--xlight-blue);
}