/* Style général */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

h1, h2 {
    color: #333;
}

p {
    color: #666;
}



/* Formulaires */
form {
    max-width: 50%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
}

input[type="text"], input[type="password"], input[type="submit"] {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Liens */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Messages d'erreur */
.error {
    color: red;
    font-weight: bold;
}

/* Background du form*/
.form-container {
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  max-width: 50%;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  align-items: center; /* Centre les éléments horizontalement */
  justify-content: center; /* Centre les éléments verticalement si nécessaire */
  text-align: center; /* Centre le texte à l'intérieur */
}

body {
    background-image: url('game_bg.jpg');
    background-position: center;
    background-attachment: fixed;
    background-size:13%;
}

