.wqf-styled{max-width:900px;margin:0 auto;font-family:inherit}.wqf-col.full{flex-basis:100%}.wqf-label{display:block;margin-bottom:6px;font-weight:600}.wqf-form input[type=text],.wqf-form input[type=email],.wqf-form input[type=number],.wqf-form textarea,.wqf-form select{width:100%;padding:10px;border:1px solid #e6e6e6;border-radius:2px}.wqf-heading{text-align:center;color:#214476;margin:18px 0}.wqf-actions{text-align:center;margin-top:16px}.wqf-submit{background:#163369;color:#fff;padding:14px 28px;border:none;letter-spacing:1px}.wqf-success{color:green}.wqf-error{color:red}

.wqf-submit.submitting::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    border: 2px solid #fff;
    border-top: 2px solid #146bb4;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Row */
.wqf-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    align-items: stretch;
}

/* Column */
.wqf-col {
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
}

/* Widths */
.wqf-width-25 {
    flex: 0 0 25%;
    max-width: 25%;
}

.wqf-width-33 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.wqf-width-50 {
    flex: 0 0 50%;
    max-width: 50%;
}

.wqf-width-66 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.wqf-width-75 {
    flex: 0 0 75%;
    max-width: 75%;
}

.wqf-width-100 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Upload Box */
.wqf-upload-box {
    position: relative;
    border: 2px dashed #d8d8d8;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.wqf-upload-box:hover {
    border-color: #146bb4;
    background: #f4f9ff;
}

.wqf-upload-box.dragging {
    border-color: #146bb4;
    background: #eaf4ff;
}

.wqf-cloud-icon {
    margin-bottom: 15px;
}

.wqf-upload-text {
    font-size: 15px;
    color: #444;
}

.wqf-upload-text strong {
    color: #146bb4;
}

.wqf-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.wqf-file-list {
    margin-top: 15px;
    font-size: 14px;
    color: #146bb4;
}

.wqf-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f6ff;
    padding: 8px 12px;
    margin-top: 8px;
    border-radius: 6px;
    font-size: 14px;
}

.wqf-file-item button {
    background: none;
    border: none;
    color: #d63638;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

#fileUpload {
    border: 2px dashed #ccc;
    padding: 30px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
}

#fileUpload:hover {
    border-color: #000;
    background: #f0f0f0;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    box-shadow: inset 0 3px 8px rgba(0,0,0,0.25);
    outline: none;
    border-color: #000;
}