
html {
  margin: 0;
  padding: 0;
  background: #1a1a24;
  font-family: sans-serif;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  height: 100vh; /* Prend toute la hauteur de la fenêtre */
  margin: 0;
}


#container {
  width: 100vw;
  overflow: hidden;
}


#logo {
  width: 100%;
}

#grayp {
  width: 60%;
  height: 20px;
  background: #222222;
  padding: 5px;
}

#graym {
  width: 390px;
  height: 70px;
  background: #222222;
  padding: 5px;
}

.formpseudo {
  background: #14141c99;
  border: 0px;
  border-radius: 0%;
  padding: 10px;
  font-family: 'Ropa Sans', sans-serif;
  border-left: solid 1px white;
  float: center;
  outline: none;
  width: 344px;
  color: white;
  margin-top:0px;
}

.formmessage {
  background: #14141c99;
  margin-top: 10px;
  border: 0px;
  border-radius: 0%;
  padding: 10px;
  font-family: 'Ropa Sans', sans-serif;
  border-left: solid 1px white;
  float: center;
  outline: none;
  width: 344px;
  color: white;
}

.formreponse {
  background: #14141c99;
  margin-top: 10px;
  border: 0px;
  border-radius: 0%;
  padding: 10px;
  font-family: 'Ropa Sans', sans-serif;
  border-left: solid 1px white;
  float: center;
  outline: none;
  width: 344px;
  color: white;
}

.send {
  background: #14141c;
  outline: 0;
  cursor: pointer;
  height: 30px;
  color: white;
  border: 0;
  font-family: 'Ropa Sans', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding-left: 15px;
  padding-right: 15px;
  transition: opacity 0.3s;
  transition: background-color 0.3s;
}

.send:hover {
  background: black;
  transition: opacity 0.3s;
  transition: background-color 0.3s;
}

#send:disabled {
  background: #14141c9d;
  color: rgb(168, 168, 168); /* Couleur du texte */
  transition: opacity 0.3s;
  transition: background-color 0.3s;
}

#send:disabled:hover {
  background: #14141c9d;
  cursor: not-allowed; /* Optionnel : changer le curseur */
}


.buttonfull {
  float: center;
  background-color: #14141c9d;
  width: 361px;
  outline: 0;
  cursor: pointer;
  height: 35px;
  color: white;
  border: 0;
  margin-top: 20px;
  font-family: 'Ropa Sans', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
  transition: background-color 0.3s;
}

.buttonfull:hover {
  background-color: black;
  transition: opacity 0.3s;
  transition: background-color 0.3s;
}

.text_block_container {
  display: flex;
  justify-content: space-between; /* Répartit les éléments uniformément */
  flex-wrap: wrap; /* Permet le retour à la ligne si nécessaire */
  width: 420px;
}

.text_block_title {
  background: #14141c00;
  color: white;
  border: 0;
  font-family: 'Ropa Sans', sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  flex: 1; /* Permet aux blocs de prendre la même largeur */
  margin-bottom: 8px;
}

.text_block {
  background: #14141c99;
  padding: 10px;
  color: white;
  border: 0;
  font-family: 'Ropa Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  flex: 1; /* Permet aux blocs de prendre la même largeur */
  margin: 5px; /* Pour ajouter un espacement entre les blocs */
}


#formP {
  width: 100vw;
  margin-top: 2px;
  display: flex;
  justify-content: center; /* Centrer horizontalement */
  align-items: center; /* Centrer verticalement si nécessaire */
}

form a {
  color: white;
}

textarea {
  resize: none;
}

textarea:focus {
  border: 0;
  border-left: solid 1px #6A9AC0;
}

input:focus {
  border: 0;
  border-left: solid 1px #6A9AC0;
}

#ok {
  width: 350px;
  float: right;
  height: 30px;
  background: #007736bd;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 10px;
  font-family: 'Open Sans', sans-serif;
}

#error {
  width: 350px;
  float: right;
  background: rgba(255, 0, 0, 0.808);
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 10px;
  font-family: 'Open Sans', sans-serif;
}

#loading {
  width: 350px;
  float: right;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: white;
}

@keyframes changecolor {
  0% {
    border-color: red;
  }

  100% {
    border-color: white;
  }
}

.colorize {
  animation-name: changecolor;
  animation: changecolor 1s;
  position: relative;
  -webkit-animation: changecolor 1s;
}

/* ANIMATIONS */

@charset "UTF-8";

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}