/* ==========================================================
   ED Clean Light Form — Elegant, Readable, Minimal
========================================================== */

.ed-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #ffffff;
}

.ed-form-title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.ed-form-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

/* GRID */
.ed-form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ed-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* LABEL */
.ed-form-group label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ed-form-group label span {
    color: #ff0e57;
}

/* TEXT BOX — White, clean, readable */
form#ed-contact-form .ed-form-group input,
form#ed-contact-form .ed-form-group textarea {
    padding: 14px 16px;
    border-radius: 10px;

    background: #ffffff;
    border: 1px solid #d0d0d0;

    color: #000000;
    font-size: 16px;
    font-weight: 400;

    outline: none;
    transition: all 0.2s ease;
}

/* Placeholder */
form#ed-contact-form .ed-form-group input::placeholder,
form#ed-contact-form .ed-form-group textarea::placeholder {
    color: #7a7a7a;
    opacity: 0.8;
}

/* Hover */
form#ed-contact-form .ed-form-group input:hover,
form#ed-contact-form .ed-form-group textarea:hover {
    border-color: #bbbbbb;
}

/* Focus — pink highlight */
form#ed-contact-form .ed-form-group input:focus,
form#ed-contact-form .ed-form-group textarea:focus {
    border-color: #ff0e57;
    box-shadow: 0 0 0 2px rgba(255, 14, 87, 0.25);
}

/* TEXTAREA */
form#ed-contact-form .ed-form-group textarea {
    min-height: 180px;
    resize: vertical;
}

/* Small info */
.ed-form-group small {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.7;
}

/* SUBMIT BUTTON — clean + bright */
.ed-btn-submit {
    display: inline-block;
    background: #ff0e57;
    color: #ffffff;

    padding: 14px 28px;
    border-radius: 10px;
    border: none;

    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    transition: 0.25s ease;
}

.ed-btn-submit {
    margin-top: 30px !important;   /* aumenta o riduci a piacere */
}


.ed-btn-submit:hover {
    background: #ff4780;
}

/* STATUS MESSAGES */
#ed-form-status {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
}