.sccf-container {
    max-width: 480px;
    margin: 0 auto;
}

.sccf-notice {
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 4px;
    font-size: 14px;
}

.sccf-notice-success {
    background: #e6ffed;
    border: 1px solid #b7f5ca;
}

.sccf-notice-error {
    background: #ffecec;
    border: 1px solid #f5b7b7;
}

.sccf-form {
    display: block;
}

.sccf-field {
    margin-bottom: 18px;
}

.sccf-label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.sccf-required {
    color: #e53935;
}

.sccf-input,
.sccf-textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    box-sizing: border-box;
}

.sccf-input:focus,
.sccf-textarea:focus {
    outline: none;
    border-color: #666;
}

.sccf-textarea {
    min-height: 100px;
    resize: vertical;
}

.sccf-counter {
    font-size: 12px;
    text-align: right;
    margin-top: 4px;
    color: #777;
}

.sccf-antispam-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sccf-antispam-question {
    font-weight: 500;
}

.sccf-antispam-input {
    max-width: 100px;
}

.sccf-honeypot {
    display: none !important;
    visibility: hidden;
}

.sccf-button {
    background: #555;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
}

.sccf-button:hover {
    opacity: 0.9;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .sccf-antispam-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
