/* --- Styles Généraux et Arrière-plan --- */
body {
    /* Mettez l'URL de votre image Star Wars rouge/noir ici. C'est CRUCIAL pour l'apparence. */
    background-image: url('/images/deadpool2.jpg'); 
    background-size: cover; 
    background-position: center top; 
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Permet d'empiler le titre et le formulaire */
    justify-content: center; /* Centre verticalement les éléments principaux */
    align-items: center; /* Centre horizontalement les éléments principaux */
}

/* --- Titre STAR WARS (au-dessus) --- */
.star-wars-title {
    color: white;
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    /* Assure qu'il soit bien visible en haut de la page */
    position: absolute;
    top: 50px; 
}

/* --- Centrage et Style du Formulaire BLANC --- */
.form-container {
    background-color: white; /* Fond BLANC comme demandé */
    padding: 30px 40px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); 
    width: 100%;
    max-width: 400px; /* Taille pour le centrage */
    /* Positionnement au centre de la page (après le titre) */
    margin-top: 100px; 
    border: 3px solid #a01010;
}

/* --- La Citation --- */
.jedi-quote {
    text-align: center;
    font-weight: bold;
    color: #444;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    line-height: 1.4;
}

/* --- Styles des champs de saisie (inputs) --- */
.form-container div {
    margin-bottom: 15px;
}

.form-container input[type="text"],
.form-container input[type="password"],
.form-container textarea,
.form-container select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0; 
    font-size: 16px;
    box-sizing: border-box; 
}

/* Styles pour le champ Commentaires? */
.form-container textarea {
    height: 80px;
    resize: none;
    /* Style pour ressembler à la zone de texte de l'image (sans label visible) */
    padding-top: 10px; 
}

/* --- Bouton de Soumission (Rouge) --- */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #a01010; /* Rouge foncé du bouton de l'image */
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 5px; 
    cursor: pointer;
    margin-top: 30px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #c41212;
}
