* {
  box-sizing: border-box;
}

button, input, p {
  font-family: "VT323", monospace;
  font-size: 1.3em;
}

p {
  text-align: left;
}

html {
  margin: 0 auto;
  padding: 10px;
  background-color: #010024;
  font-family: "VT323", monospace;
}

h1, h2, h3 {
  margin: 0;
  font-weight: normal;
}

h2, h3 {
  font-family: "VT323", monospace;
  text-align: left;
  font-size: 1.3em;
}

h3 {
  text-decoration: underline;
}

h1 {
  margin-bottom: 20px;
  font-family: "Turret Road", sans-serif;
  font-weight: 700;
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #820085;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #820085, 0 0 15px #820085;
  }
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #041f3c;
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 100% 100%, 5% 100%, 0 95%, 0 0);
          clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 100% 100%, 5% 100%, 0 95%, 0 0);
}

.container {
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  color: #ededed;
}
.container .input--ctn {
  display: flex;
  flex-direction: row;
  margin: 20px auto;
}
.container input {
  padding: 5px;
  width: 100%;
  margin-right: 10px;
  background-color: #ededed;
  border: none;
  font-size: 25px;
  text-align: center;
}
.container input:focus {
  outline: none;
  /* border: 2px solid #4A90E2; */
  box-shadow: 0 0 10px #ededed; /* Ajoute un effet de glow */
}
.container button {
  padding: 10px;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
}
.container button:active, .container button:hover {
  background: #ab429b !important;
}
.container button.validate-btn {
  background: #820085;
  min-width: 40%;
}
.container button.validate-btn.technical {
  margin-top: 20px;
  width: auto;
}
.container button:hover {
  background: #0056b3;
}
.container .content {
  padding: 20px;
  margin: 20px auto;
  color: #010024;
  background: #e9ecef;
  display: none;
  width: 100%;
}
.container .content .content-txt {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.3em;
}
.container .inventory {
  margin-top: 20px;
  padding: 10px;
  background: #ededed;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: left;
}
.container .inventory #inventoryList {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.container .inventory button {
  display: block;
  width: 100%;
  background-color: #ab429b;
}
.container .errorfield {
  color: #ededed;
  padding: 10px;
  font-size: 1.3em;
}

.erroralert {
  background-color: #a40000 !important;
}

.successalert {
  background-color: #004923 !important;
}

.flex1 {
  flex: 1;
}

.flex2 {
  flex: 2;
}

.hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */