.scf-form {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #856eb0;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    direction: rtl;
    text-align: right;
}

.scf-form h3 {
    font-size: 18px;
    font-weight: bold;
    color: #856eb0;
    margin-top: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.scf-form label {
    font-weight: 600;
    color: var(--main-color);
}

.scf-form input,
.scf-form select,
.scf-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.scf-form input[type="file"] {
    border: none;
}

.scf-form button {
    background: var(--accent-color);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}

.scf-form button:hover {
    background: #0092c4;
}