/* SHINE shared form styles
   Used by the site's native forms after removal of Squarespace form code.
*/

.shine-contact-form {
    width: 100%;
}

.shine-contact-form .form-field {
    margin-bottom: 24px;
}

.shine-contact-form label {
    display: block;
    margin-bottom: 8px;
}

.shine-contact-form input[type="text"],
.shine-contact-form input[type="email"],
.shine-contact-form input[type="tel"],
.shine-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    background: #f7f7f7;
    border: 1px solid #cfcfcf;
    border-radius: 18px;
    padding: 14px 16px;
    font: inherit;
    color: inherit;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.shine-contact-form input[type="text"],
.shine-contact-form input[type="email"],
.shine-contact-form input[type="tel"] {
    min-height: 48px;
}

.shine-contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.shine-contact-form input[type="text"]:focus,
.shine-contact-form input[type="email"]:focus,
.shine-contact-form input[type="tel"]:focus,
.shine-contact-form textarea:focus {
    outline: none;
    border-color: #888;
    background: #fff;
}

.shine-contact-form button[type="submit"] {
    cursor: pointer;
}

/* Keep Cloudflare Turnstile separated cleanly from the submit button. */
.shine-contact-form .cf-turnstile {
    margin: 0 0 24px 0;
}

/* Prevent fields from overflowing on small screens. */
@media (max-width: 640px) {
    .shine-contact-form input[type="text"],
    .shine-contact-form input[type="email"],
    .shine-contact-form input[type="tel"],
    .shine-contact-form textarea {
        width: 100%;
    }
}


.shine-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding-top: 2mm;
}