/* CF7 wraps each field in <p> tags — reset and space them properly */
.form p {
    margin: 0;
    padding: 0;
}

.form .wpcf7-form > p {
    margin-bottom: 1rem;
}

.form .wpcf7-form > p:last-of-type {
    margin-bottom: 0;
}

/* Hide CF7 spinner inside modals */
.modal .wpcf7-spinner {
    display: none;
}

/* CF7 submit button inside .form */
.form .wpcf7-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: #7a6d5c;
    border: 1px solid #7a6d5c;
    cursor: pointer;
    transition: all 300ms;
    width: 100%;
}

.form .wpcf7-form input[type="submit"]:hover {
    opacity: 0.8;
}