/* Styles pour le formulaire */
#form {
    max-width: 700px;
    border-radius: 5px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	overflow-x: auto;
	max-height: 80%;
}
@media (max-width: 700px) {
  /* CSS that should be displayed if width is equal to or less than 800px goes here */
  #form {
	  max-width: 90%;
  }
}

img {
	margin:auto;
}

#password_field {
	padding: 5px;
}

a {
	color: #ffffffc7;
    font-weight: bolder;
}

p {
	width: 100%;
}

#VP {
	padding: 10px 10px;
    margin: 10px 0;
    margin-right: 10px;
}

form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
}

div {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

label {
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 10px;
}

h3 {
  width: 100%;
  text-align: center;
  margin: 5px;
}
h4 {
  width: 100%;
  text-align: center;
  margin: 0 0 25px 0;
  color: #ffffffb8;
}

input[type="text"],
input[type="password"],
input[type="number"],
select {
  flex: 1;
  padding: 0px 10px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

textarea {
  flex: 1;
  height: 200px;
  background-color: #ffffffd4;
  border-radius: 20px;
  border: 1px solid #ccc;
  padding: 15px;
  font-size: 1.5rem;
  margin-right: 10px;
}

input[type="submit"] {
  flex: 1;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  margin-right: 10px;
  font-size: 1.5rem;
}

input[type="submit"]:hover {
  background-color: #0069d9;
}

pre {
	text-align: left;
	padding: 15px;
    background-color: #ffffff14;
	margin: auto;
}

/* Styles pour la page */
html,body {
  background-image: linear-gradient(to bottom left, #60366a, #09112f);
  height: 100%;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url(Montserrat.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}