/* ===== FORM CONTAINER ===== */
.wscf-form {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* ===== GRID LAYOUT ===== */
.wscf-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.wscf-row div {
    flex: 1;
}

/* ===== LABELS & INPUTS ===== */
.wscf-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    font-size: 14px;
}

.wscf-form input,
.wscf-form select,
.wscf-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    background: #f9fafb;
    transition: all .25s ease;
}

.wscf-form input:focus,
.wscf-form select:focus,
.wscf-form textarea:focus {
    border-color: #38bdf8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(56,189,248,0.2);
    outline: none;
}

/* ===== BUTTON ===== */
.wscf-form button {
    background: #0891b2;
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
}

.wscf-form button:hover {
    background: #0e7490;
}

/* ===== SUCCESS / ERROR ===== */
.wscf-success {
    padding: 12px;
    background: #e7f9ef;
    border-left: 4px solid #16a34a;
    margin-bottom: 20px;
}

.wscf-error {
    padding: 12px;
    background: #fee2e2;
    border-left: 4px solid #dc2626;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 600px) {
    .wscf-row {
        flex-direction: column;
    }
}
