* {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column; /* Organise les éléments verticalement */
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('/images/background.jpg'); /* Remplacez par le chemin de votre image */
    background-size: cover; /* Ajuste l'image pour couvrir toute la page */
    background-position: center; /* Centrage de l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
}

h1 {
    color: #4285F4;
	font-family: "Comic Sans MS", georgia, "trebuchet ms", arial, serif;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ajoute un effet d'ombre au texte */
}

p {
    color: #4285F4;
    font-size: 1.5rem;
    margin: 50px 0 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Ajoute un effet d'ombre au texte */
}

form {
    background-color: rgba(255, 255, 255, 0.9); /* Couleur blanche semi-transparente */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}