body {
    overflow-x: hidden;
}

/* Mettre les deux parties aligné */
.contact-zone {
    padding: 16px 128px;
    display: flex;
    gap: 128px;
    align-items: center;
    justify-content: center;
}

/* Style du formulaire */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex: 2;
    border: 1px solid #2B2B2B;
    border-radius: 8px;
    padding: 32px;
}

.name {
    display: flex;
    gap: 16px;
}

.plain-width-input {
    width: 100%;
}

.name input,
.mail-input {
    border-bottom: #A2BF95 2px solid;
}

.message-input {
    padding: 8px;
    padding-bottom: 128px;
    border: 1px solid #2B2B2B;
    border-radius: 8px;
    white-space: pre-wrap;
    background: none;
    resize: none;
    color: #F2F2F2;
    font-size: 16px;
}

.message-input::placeholder {
    color: #F2F2F2;
    font-family: "Rajdhani";
    font-size: 16px;
}

.message-input:focus {
    outline: none;
}

input {
    padding: 8px;
    border: none;
    background: none;
    color: #F2F2F2;
}

input:focus {
    outline: none;
}

input::placeholder {
    color: #F2F2F2;
    font-family: "Rajdhani";
    font-size: 16px;
}

.submit {
    background: #A2BF95;
    padding: 8px 16px;
    border-radius: 8px;
    color: #181818;
    cursor: pointer;
}

/* Style de la partie avec la liste des contacts */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-media-line {
    gap: 32px;
}

/* Style de la zone de fin du site web */
.bye-bye-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wave-transition {
    width: 100%;
    margin-bottom: -10px;
}

.bye-bye-text {
    background: #0F0F0F;
    width: 100%;
    padding: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bye-bye-title {
    font-size: 24px;
}

/* Style du footer */
footer {
    padding: 16px;
    background: #0F0F0F;
}

@media (width<1100px) {
    .contact-zone {
        flex-direction: column;
        gap: 32px;
        padding-bottom: 32px;
    }

    .contact-list {
        width: 80%;
    }
}

@media (width < 555px) {
    footer {
        grid-template-columns: 1fr;
    }
    .legal-mention {
        text-align: right;
    }
    .contact-zone {
        padding: 8px;
    }
    .contact-list {
        gap: 8px;
    }
}

@media (width < 490px) {
    form {
        width: 230px;
        margin-right: auto;
        margin-left: auto;
    }

    .name {
        flex-direction: column;
    }
}

@media (width < 350px) {
    form {
        width: 190px;
        margin-right: auto;
        margin-left: auto;
    }
}

/* Style pour sweetAlert */
.custom-confirm-btn {
    background: #A2BF95;
    color: #181818;
}