/* Style global */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Noto Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

body:before {
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    filter:opacity(.5) blur(5px);
    width: 100%;
    height: 100%;
    position: fixed;
    content:'';
    z-index: -999;
  }

/* Conteneur principal */
.container {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: -20px -10px 15px rgba(0, 0, 0, .25);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

/* Titre */
.container h2 {
    font-size: 1.5rem;
    color: #4A90E2;
    margin-bottom: 15px;
}

/* Texte descriptif */
.container p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

/* Style des champs de formulaire */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4A90E2;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

textarea {
    resize: vertical;
    height: 90px;
}

/* Bouton de soumission */
button {
    background-color: #4A90E2;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #357ABD;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        max-width: 100%;
    }
    body {
        align-items: flex-start;
    }
    button {
        padding: 10px;
    }
}