.dashuju-pwd-overlay {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(14, 15, 18, 0.92);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
}
.dashuju-pwd-box {
    width: 23.75rem;
    max-width: 90rem;
    padding: 2.5rem 2.25rem 2rem;
    background: linear-gradient(180deg, rgba(12, 24, 60, 0.95) 0%, rgba(8, 16, 44, 0.95) 100%);
    border: 0.0625rem solid rgba(100, 160, 220, 0.25);
    text-align: center;
    position: relative;
}
.dashuju-pwd-box::before,
.dashuju-pwd-box::after {
    position: absolute; width: 1rem; height: 1rem; content: '';
    border-top: 0.125rem solid rgba(100, 180, 255, 0.5); top: -0.0625rem;
}
.dashuju-pwd-box::before { border-left: 0.125rem solid rgba(100, 180, 255, 0.5); left: -0.0625rem; }
.dashuju-pwd-box::after { border-right: 0.125rem solid rgba(100, 180, 255, 0.5); right: -0.0625rem; }
.dashuju-pwd-icon { margin-bottom: 1rem; }
.dashuju-pwd-title {
    font-size: 1.25rem;
    color: #e8edf5;
    font-weight: 500;
    letter-spacing: 0.125rem;
    margin-bottom: 0.5rem;
}
.dashuju-pwd-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}
.dashuju-pwd-input-wrap { margin-bottom: 0.5rem; }
.dashuju-pwd-input {
    width: 100%;
    height: 2.75rem;
    background: rgba(10, 20, 50, 0.7);
    border: 0.0625rem solid rgba(100, 160, 220, 0.2);
    color: #e8edf5;
    font-size: 0.9375rem;
    padding: 0 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    letter-spacing: 0.125rem;
}
.dashuju-pwd-input:focus { border-color: rgba(100, 180, 255, 0.5); }
.dashuju-pwd-input::placeholder { color: rgba(255, 255, 255, 0.2); letter-spacing: 0.0625rem; }
.dashuju-pwd-error {
    min-height: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.8125rem;
    color: #f56c6c;
    text-align: left;
    padding: 0 0.125rem;
}
.dashuju-pwd-btn {
    width: 100%;
    height: 2.75rem;
    background: linear-gradient(135deg, rgba(64, 158, 255, 0.8), rgba(40, 120, 220, 0.8));
    border: 0.0625rem solid rgba(100, 180, 255, 0.3);
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.25rem;
    cursor: pointer;
    transition: opacity 0.2s;
}
.dashuju-pwd-btn:hover { opacity: 0.85; }
.dashuju-pwd-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.mobile-layout .dashuju-pwd-box { padding: 2.25rem 1.75rem 1.75rem; }
.mobile-layout .dashuju-pwd-title { font-size: 1.5rem; }
.mobile-layout .dashuju-pwd-desc { font-size: 1rem; }
.mobile-layout .dashuju-pwd-input { height: 3.25rem; font-size: 1.125rem; }
.mobile-layout .dashuju-pwd-btn { height: 3.25rem; font-size: 1.25rem; }
.mobile-layout .dashuju-pwd-error { font-size: 1rem; min-height: 1.75rem; line-height: 1.75rem; }
