.repsd-box {
    max-width: 520px;
    margin: 20px 0;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
    box-sizing: border-box;
    font-family: inherit;
}
.repsd-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    border: none !important;
    background: none !important;
    padding: 0 !important;
}
.repsd-desc {
    font-size: 14px;
    font-weight: 400;
    color: #475569;
    margin-bottom: 18px;
    line-height: 1.6;
}
.repsd-field-group {
    margin-bottom: 16px;
}
.repsd-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}
.repsd-req {
    color: #dc2626;
}
.repsd-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    background-color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s, background-color 0.2s;
}
.repsd-input:focus {
    border-color: #3b82f6;
    outline: none;
}
.repsd-input.repsd-has-error {
    border: 1.5px solid #dc2626 !important;
    background-color: #fef2f2 !important;
}
.repsd-error-msg {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #dc2626;
    font-weight: 500;
}
.repsd-general-error {
    background-color: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
    border-radius: 0 4px 4px 0;
}
.repsd-submit-btn {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.repsd-submit-btn:hover {
    background-color: #1d4ed8;
}