
.scf-simple-wrap,
.scf-simple-wrap * {
    box-sizing: border-box;
}

.scf-simple-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
}

.scf-simple-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.scf-field {
    display: grid;
    gap: 8px;
}

.scf-field--full {
    grid-column: 1 / -1;
}

.scf-field label {
    display: block;
    margin: 0;
    color: #111827;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.4;
}

.scf-field input,
.scf-field textarea {
    display: block;
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid #d0d7de;
    border-radius: 12px;
    background: #f8fafc;
    color: #111827;
    font: inherit;
    line-height: 1.5;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.scf-field input::placeholder,
.scf-field textarea::placeholder {
    color: #6b7280;
    opacity: 1;
}

.scf-field textarea {
    min-height: 180px;
    resize: vertical;
}

.scf-field input:hover,
.scf-field textarea:hover {
    border-color: #b9c3cf;
    background: #ffffff;
}

.scf-field input:focus,
.scf-field textarea:focus {
    border-color: #2563eb;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.scf-submit-button {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 54px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.scf-submit-button:hover,
.scf-submit-button:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.scf-submit-button:active {
    transform: translateY(0);
}

.scf-notice {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid currentColor;
    border-radius: 12px;
    font: inherit;
}

.scf-notice--success {
    color: #166534;
    background: #f0fdf4;
}

.scf-notice--error {
    color: #b91c1c;
    background: #fef2f2;
}

@media (max-width: 767px) {
    .scf-simple-form {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0;
        border-radius: 0;
    }

    .scf-field--half,
    .scf-field--full,
    .scf-submit-button {
        grid-column: auto;
    }

    .scf-submit-button {
        width: 100%;
        justify-self: stretch;
    }
}
