.documentsContainer{display:flex;flex-direction:column;gap:14px}
.document-item{border:1px solid #dfe3e8;border-radius:12px;background:#f8fafc;padding:18px}
.document-header{display:flex;align-items:center;justify-content:space-between;gap:15px;margin-bottom:15px}.document-title{font-size:15px;font-weight:700;color:#344054}
.document-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.documents-actions{display:flex;align-items:center;gap:14px;margin-top:18px}.document-counter{font-size:13px;font-weight:600;color:#667085}
.btn-add-document,.btn-remove-document{border:0;border-radius:8px;padding:10px 15px;font-size:14px;font-weight:700;cursor:pointer}
.btn-add-document{background:#1d2939;color:#fff}.btn-add-document:disabled{opacity:.5;cursor:not-allowed}
.btn-remove-document{background:#fff;color:#b42318;border:1px solid #fecdca}
.rfp-wrapper {max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #263238;
}
.rfp-header {
    margin-bottom: 30px; 
}

.rfp-header h1 {
    margin: 0 0 8px;
    font-size: 32px;
    font-weight: 700;
    color: #1d2939;
}

.rfp-header p {
    margin: 0;
    color: #667085;
    font-size: 15px;
}

/* CARD */

.rfp-card {
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 18px rgba(16, 24, 40, 0.05);
}

.rfp-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eaecf0;
}

.rfp-section-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #f2f4f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #344054;
}

.rfp-section-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1d2939;
}

.rfp-section-header p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #667085;
}

/* GRID */

.rfp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.rfp-field {
    display: flex;
    flex-direction: column;
}

.rfp-field-full {
    grid-column: 1 / -1;
}

/* LABELS */

.rfp-field label {
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.rfp-required {
    color: #d92d20;
}

/* INPUTS */

.rfp-field input,
.rfp-field select,
.rfp-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d0d5dd;
    border-radius: 9px;
    background: #fff;
    color: #101828;
    font-family: inherit;
    font-size: 15px;
    transition: all .2s ease;
}

.rfp-field input,
.rfp-field select {
    height: 46px;
    padding: 0 13px;
}

.rfp-field textarea {
    min-height: 130px;
    padding: 12px 13px;
    resize: vertical;
}

.rfp-field input::placeholder,
.rfp-field textarea::placeholder {
    color: #98a2b3;
}

.rfp-field input:hover,
.rfp-field select:hover,
.rfp-field textarea:hover {
    border-color: #98a2b3;
}

.rfp-field input:focus,
.rfp-field select:focus,
.rfp-field textarea:focus {
    outline: none;
    border-color: #667085;
    box-shadow: 0 0 0 3px rgba(102, 112, 133, .12);
}

/* HELP TEXT */

.rfp-help {
    margin-top: 6px;
    font-size: 12px;
    color: #667085;
}

/* SERVICES */
.rfp-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rfp-service {
    position: relative;
    flex: 0 0 auto;
}

.rfp-service input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rfp-service label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid #d0d5dd;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    transition: .2s;
}

.rfp-service input:checked + label {
    background: #1d2939;
    color: #fff;
    border-color: #1d2939;
}

.rfp-service label:hover {
    border-color: #98a2b3;
    background: #f9fafb;
}

/* OTHER */

.rfp-other {
    margin-top: 20px;
}

/* FILES */

.rfp-files {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rfp-file-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
    padding: 18px;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    background: #f9fafb;
}

.rfp-file-row input[type="file"] {
    padding: 8px;
    height: auto;
    background: #fff;
}

.rfp-file-row input[type="text"] {
    background: #fff;
}

.rfp-add-file {
    height: 46px;
    padding: 0 16px;
    border: 1px solid #d0d5dd;
    border-radius: 9px;
    background: #fff;
    color: #344054;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.rfp-add-file:hover {
    background: #f2f4f7;
}

/* DATA POLICY */

.rfp-policy {
    max-height: 180px;
    overflow-y: auto;
    padding: 18px;
    background: #f9fafb;
    border: 1px solid #eaecf0;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: #475467;
}

.rfp-policy strong {
    display: block;
    margin-bottom: 10px;
    color: #1d2939;
}

/* CHECKBOX */

.rfp-accept {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
}

.rfp-accept input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: #344054;
}

.rfp-accept label {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    cursor: pointer;
}

/* FOOTER */

.rfp-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
}

.rfp-submit {
    min-width: 180px;
    height: 48px;
    padding: 0 25px;
    border: 0;
    border-radius: 9px;
    background: #1d2939;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.rfp-submit:hover {
    background: #101828;
    transform: translateY(-1px);
}

.rfp-submit:active {
    transform: translateY(0);
}

.rfp-alert-error{
    background:#fef3f2;
    border:1px solid #fecdca;
    color:#b42318;
    padding:16px;
    border-radius:10px;
    margin-bottom:20px;
}

.rfp-alert-error strong{
    display:block;
    margin-bottom:10px;
}

.rfp-alert-error ul{
    margin:0;
    padding-left:20px;
}

.rfp-alert-error li{
    margin-bottom:6px;
}

.rfp-input-error{
    border-color:#d92d20 !important;
}

.rfp-field-error{
    color:#d92d20;
    font-size:12px;
    margin-top:5px;
}

.rfp-counter{
    margin-top:6px;
    font-size:12px;
    color:#667085;
}
/* RESPONSIVE */
@media (max-width: 768px) {

    .rfp-wrapper {
        margin: 20px auto;
        padding: 0 12px;
    }

    .rfp-header h1 {
        font-size: 26px;
    }

    .rfp-card {
        padding: 20px;
        border-radius: 12px;
    }

    .rfp-grid {
        grid-template-columns: 1fr;
    }

    .rfp-field-full {
        grid-column: auto;
    }

    .rfp-services {
        grid-template-columns: 1fr;
    }

    .rfp-file-row {
        grid-template-columns: 1fr;
    }

    .rfp-actions {
        display: block;
    }

    .rfp-submit {
        width: 100%;
    }
}
.rfp-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}