/* Change Password Styles */

.change-pwd-btn {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.change-pwd-btn:hover {
    background: rgba(56, 189, 248, 0.2);
    transform: translateY(-1px);
}

.change-pwd-btn:active {
    transform: translateY(1px);
}

.pwd-requirements {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.req-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    display: inline-block;
    transition: all 0.2s ease;
}
