.invite {
    text-align: center;
    font-family: Arial, sans-serif;
}

.invite .people-name {
    color: #800020;
    font-family: "Playfair Display";
    font-weight: 400;
}

.invite .days {
    font-family: "Lavishly Yours";
    color: #800020;
    font-size: 30px;
    font-weight: 300;
}

.invite .message-invite {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 14px;
}

.invite label {
    display: block;
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.invite .radio-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

.invite .radio-group input[type="radio"] {
    display: none; /* Cache les vrais boutons radio */
}

.invite .radio-group label {
    padding: 10px 20px;
    /* border: 2px solid #0073aa; */
    border-radius: 5px;
    cursor: pointer;
    background-color: white;
    transition: all 0.3s ease;
}

.invite .radio-group input[type="radio"]:checked + label {
    background-color: #800020;
    /* border: 1px solid 800020; */
    color: white;
}

.invite textarea {
    width: 80%;
    max-width: 500px;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.invite button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #800020;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.invite button:hover {
    background-color: #c87f5f;
}