/* Conteneur principal */
.form-box h1 {
    font-size: 36px;
    font-weight: bold;
    color: #FFA500; /* Orange */
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(255, 165, 0, 0.7); /* Effet lumineux léger */
}
p {
    color: #000000;
    font-family: 'Raleway', sans-serif;
}
.form-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

/* Zone formulaire */
.form-box {
    flex: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Style des champs */
form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    color: #FFA500 !important; /* FORCÉ en orange */
    display: block;
    margin-top: 10px;
    font-size: 1.1em;
}

/* Styles des champs de saisie */
input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 2px solid #FFA500 !important; /* FORCÉ en orange */
    border-radius: 5px;
    background: white;
    font-size: 1em;
    color: #333; /* Texte en noir */
    box-sizing: border-box; /* Empêche tout débordement */
}

/* Effet au focus (quand on clique sur le champ) */
input:focus, textarea:focus {
    border-color: #FF8C00 !important; /* Bordure orange foncé au focus */
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.6); /* Effet lumineux autour */
    outline: none;
}

textarea {
    resize: none;
}

button {
    margin-top: 15px;
    padding: 12px;
    background: #FFD700;
    color: #002147;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #ffcc00;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Zone logo */
.logo-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-box img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .form-container {
        flex-direction: column;
        align-items: center;
    }

    .form-box {
        width: 90%;
    }

    .logo-box {
        width: 90%;
        margin-top: 20px;
    }

    .logo-box img {
        max-width: 200px;
    }
}
