body {
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    position: relative;
    font-family: Poppins, sans-serif;
}

.form-container {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    z-index: 1;
}

.form-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

form p {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

button {
    padding: 0.75rem 2rem;
    border: 2px solid black;
    background-color: transparent;
    color: black;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #fde8e7;
    color: black;
}

.linkedin-note {
    text-align: center;
    margin-top: 2rem;
    z-index: 1;
    font-weight: bold;
}

.linkedin-note a {
    color: gray;
    font-weight: bold;
    text-decoration: none;
}

.linkedin-note a:hover {
    text-decoration: underline;
}

.intro {
    text-align: center;
    max-width: 600px;
    margin: 60px auto 70px auto;
    font-size: 1rem;
    z-index: 1;
    font-weight: bolder;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #E5E1DC;
    top: 0;
    left: 0;
    z-index: -1;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    flex-direction: column;
}

/* Header toujours visible au-dessus */
#head {
    position: relative;
    z-index: 10;
}

/* Logo toujours bien visible */
#logo img {
    z-index: 10;
    position: relative;
}
