.my-contact-form {
    width: 40%;
    padding: 40px 20px;
    box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.1);
    background-color: #fff; /* Sostituisci con var(--color-white) se presente */
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    border-radius: 5px;
    margin: 20px auto;
}

.my-contact-form h2 {
    margin-bottom: 25px;
    font-weight: 600;
    color: #333; /* Sostituisci con var(--color-dark) se presente */
    text-align: center;
}

.my-contact-form input,
.my-contact-form textarea {
    border: 1px solid #e0e0e0; /* Sostituisci con var(--color-gray) se presente */
    outline: none;
    padding: 15px;
    background-color: #fff; /* Sostituisci con var(--color-white) se presente */
    width: 100%;
    display: block;
    box-sizing: border-box;
    font-weight: 400;
    border-radius: 3px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    transition: border-color 0.3s ease;
}

.my-contact-form input:focus,
.my-contact-form textarea:focus {
    border-color: #ff6b81; /* Sostituisci con var(--color-pink) se presente */
    box-shadow: 0 0 5px rgba(255, 107, 129, 0.2);
}

.my-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.my-contact-form ::placeholder {
    font-family: "Poppins", sans-serif;
    color: #777; /* Sostituisci con var(--color-dark) se presente */
    font-weight: 400;
    opacity: 0.7;
}

.my-contact-form .text-center {
    text-align: center;
}

.my-contact-form .btn {
    background-color: var(--color-dark-pink);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.my-contact-form .btn:hover {
    background-color: var(--color-pink);
}

/* Stili per i messaggi di feedback */
.alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    width: 100%;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}