/* Fluent Form Styles */
label {
    font-family: 'Syne', sans-serif;
    font-size: var(--wp--preset--font-size--xxs);
    text-transform: uppercase;
    font-weight: bold;
    color: var(--wp--preset--color--primary);
}

.ff-el-input--label {
    line-height: 1;
}

input,
select,
textarea {
    background: var(--wp--preset--color--background);
    border: 1px solid var(--wp--preset--color--border);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: var(--wp--preset--font-size--xs);
    color: var(--wp--preset--color--primary);
    outline: none;
    transition: border-color 0.2s;
}

input:focus {
    border-color: var(--wp--preset--color--primary);
}

.fluentform .ff-el-group {
    margin-bottom: .5rem;
}

button[type="submit"] {
    width: 100%;
    background: var(--wp--preset--color--accent);
    color: var(--wp--preset--color--white);
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-family: "Syne", sans-serif;
    font-size: var(--wp--preset--font-size--xs);
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    transition: background-color 0.2s;
}

button[type="submit"]:hover {
    background: var(--wp--preset--color--primary);
}

/* success */
.ff-message-success {
    border: none;
    box-shadow: none;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--wp--preset--color--muted);
    color: white;
    font-family: "Syne", sans-serif;
}