.complaint-report-form-wrapper * {
    box-sizing: border-box;
}

.complaint-report-form-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, .06);
    padding: 32px;
}

.complaint-report-heading {
    margin-bottom: 24px;
}

.complaint-report-heading h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2a44;
    margin: 0 0 6px;
}

.complaint-report-heading p {
    color: #6b7280;
    margin: 0;
}

.complaint-report-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.complaint-report-col {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}

.complaint-report-form-group {
    margin-bottom: 20px;
}

.complaint-report-label {
    display: inline-block;
    font-weight: 600;
    color: #1f2a44;
    margin-bottom: 8px;
}

.complaint-report-label.required:after {
    content: " *";
    color: #ef4444;
}

.complaint-report-input {
    display: block;
    width: 100%;
    background-color: #f8f9fb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #1f2a44;
    font-size: 15px;
    line-height: 1.5;
    padding: 14px 16px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.complaint-report-input::placeholder {
    color: #9ca3af;
}

.complaint-report-input:focus {
    border-color: #2f7df6;
    box-shadow: 0 0 0 3px rgba(47, 125, 246, .15);
    outline: 0;
    background-color: #fff;
}

textarea.complaint-report-input {
    resize: vertical;
    min-height: 140px;
}

.complaint-report-input.is-invalid {
    border-color: #ef4444;
}

.complaint-report-field-error {
    color: #b91c1c;
    font-size: 13px;
    margin-top: 6px;
}

.complaint-report-help {
    display: block;
    margin-top: 6px;
    color: #9ca3af;
    font-size: 13px;
}

.complaint-report-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    color: #1f2a44;
    cursor: pointer;
}

.complaint-report-checkbox input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.complaint-report-checkbox a {
    color: #2563eb;
    text-decoration: underline;
}

.complaint-report-message {
    border-radius: 10px;
    margin: 0 0 20px;
    padding: 14px 18px;
    width: 100%;
}

.complaint-report-success-message {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #14532d;
}

.complaint-report-error-message {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #7f1d1d;
}

.complaint-report-nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.complaint-report-btn {
    display: inline-block;
    border: 0;
    border-radius: 10px;
    background-image: linear-gradient(135deg, #2f7df6, #2563eb);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 14px 32px;
    transition: opacity .15s ease-in-out, box-shadow .15s ease-in-out;
}

.complaint-report-btn:hover,
.complaint-report-btn:focus {
    opacity: .92;
    box-shadow: 0 6px 18px rgba(37, 99, 235, .3);
    color: #fff;
}

.complaint-report-btn.button-loading {
    opacity: .6;
    pointer-events: none;
}

.complaint-report-form-wrapper .iti {
    width: 100%;
}

@media (min-width: 768px) {
    .complaint-report-col-6 {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .complaint-report-form-wrapper {
        padding: 20px;
    }
}
