/* Distributor Portal modal (Register/Login) */
.dp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 36, 41, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.dp-modal-overlay.dp-open {
    display: flex;
}
.dp-modal {
    background: #fff;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.dp-modal .dp-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 28px;
    height: 28px;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 20px !important;
    line-height: 1 !important;
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    color: #5D7A7E !important;
    z-index: 2;
}
.dp-modal-tabs {
    display: flex;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #E7EEED;
    margin-bottom: 20px;
    padding-right: 32px;
}
.dp-modal-tab {
    flex: 1;
    text-align: center;
    padding: 10px 0 !important;
    margin: 0 !important;
    cursor: pointer;
    font-weight: 600 !important;
    font-size: 15px !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    color: #5D7A7E !important;
}
.dp-modal-tab.dp-active {
    color: #003057 !important;
    border-bottom-color: #003057 !important;
}
.dp-modal-pane {
    display: none;
}
.dp-modal-pane.dp-active {
    display: block;
}
.dp-modal-pane label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #13383F;
}
.dp-modal-pane p {
    margin: 0 0 14px;
}
.dp-modal-pane input[type="text"],
.dp-modal-pane input[type="email"],
.dp-modal-pane input[type="password"],
.dp-modal-pane input[type="tel"] {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #D6E2E0;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
}
.dp-modal-submit-spacer {
    height: 10px;
}
.dp-modal-pane button[type="submit"] {
    width: 100%;
    margin-top: 6px !important;
    padding: 11px 0;
    background: #003057;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
}
.dp-modal-pane button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: default;
}
.dp-modal-msg {
    display: none;
    padding: 10px 12px;
    border-radius: 5px;
    font-size: 13px;
    margin-bottom: 14px;
}
.dp-modal-msg.dp-show {
    display: block;
}
.dp-modal-msg.dp-error {
    background: #FDEAEA;
    color: #9C2B2B;
}
.dp-modal-msg.dp-success {
    background: #E8F5E9;
    color: #256029;
}
